forked from robbrad/UKBinCollectionData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (62 loc) · 1.61 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "uk_bin_collection"
version = "0.83.0"
description = "Python Lib to collect UK Bin Data"
readme = "README.md"
authors = ["Robert Bradley <[email protected]>"]
packages = [
{ include = "uk_bin_collection", from = "." },
]
include = ["uk_bin_collection"]
[tool.pytest.ini_options]
pythonpath = [
".", "uk_bin_collection"
]
[tool.flit.metadata]
module = "uk_bin_collection"
[tool.poetry.urls]
issues = "https://github.com/robbrad/UKBinCollectionData/issues"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
flake8 = "*"
jsonschema = "*"
pylint = "*"
pytest = "*"
setuptools = "*"
pytest-bdd = "*"
allure-pytest-bdd = "*"
pytest-xdist = {extras = ["psutil"], version = "*"}
pyhamcrest = "*"
tabulate = "^0.9.0"
[tool.poetry.scripts]
uk_bin_collection = "uk_bin_collection.uk_bin_collection.collect_data:run"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetrylock", path = "poetry.lock"}
envs = ["main"]
to = {format = "poetry", path = "pyproject.toml"}
[tool.poetry.dependencies]
bs4 = "*"
python-dateutil = "*"
holidays = "*"
pandas = "*"
python = ">=3.11"
requests = "*"
selenium = "*"
lxml = "*"
urllib3 = "*"
webdriver-manager = "^4.0.1"
tabulate = "^0.9.0"
[tool.commitizen]
major_version_zero = true
version_provider = "poetry"
version_scheme = "semver"
version_files = [
"custom_components/uk_bin_collection/manifest.json:version",
"custom_components/uk_bin_collection/manifest.json:requirements",
"custom_components/uk_bin_collection/config_flow.py:githubusercontent"
]