Alter 2 files
Add `.gitignore` Add `pyproject.toml`
This commit is contained in:
commit
23055fc798
2 changed files with 164 additions and 0 deletions
17
pyproject.toml
Normal file
17
pyproject.toml
Normal file
|
@ -0,0 +1,17 @@
|
|||
[tool.poetry]
|
||||
name = "circuit-laundry-notifier"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["AKP <tom@tdpain.net>"]
|
||||
license = "MIT"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.8"
|
||||
requests = "^2.28.1"
|
||||
beautifulsoup4 = "^4.11.1"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
Reference in a new issue