Alter 2 files

Add `.gitignore`
Add `pyproject.toml`
This commit is contained in:
akp 2022-11-07 22:22:02 +00:00
commit 23055fc798
No known key found for this signature in database
GPG key ID: AA5726202C8879B7
2 changed files with 164 additions and 0 deletions

17
pyproject.toml Normal file
View 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"