-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 954 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "harlow-bindicator"
version = "3.0.1"
description = "Send alert the day before and on the day of bin collection in Harlow"
authors = ["Joe McCarthy <[email protected]>"]
maintainers = ["Joe McCarthy <[email protected]>"]
documentation = "https://github.com/joe-mccarthy/harlow-bindicator"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/joe-mccarthy/harlow-bindicator"
repository = "https://github.com/joe-mccarthy/harlow-bindicator"
[tool.poetry.dependencies]
python = "^3.12"
beautifulsoup4 = "^4.12.3"
selenium = "^4.27.1"
requests = "^2.32.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
black = ">=24.10,<26.0"
pytest-cov = "^6.0.0"
pytest-randomly = "^3.16.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
harlow-bindicator = "harlow_bindicator.main:fetch_bin_collection"