forked from robbrad/UKBinCollectionData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (47 loc) · 1.16 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
[tool.poetry]
name = "uk_bin_collection"
version = "0.9.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 = "*"}
[tool.poetry.scripts]
uk_bin_collection = "uk_bin_collection.uk_bin_collection:collect_data"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetrylock", path = "poetry.lock"}
envs = ["main"]
to = {format = "poetry", path = "pyproject.toml"}
[tool.poetry.dependencies]
bs4 = "*"
holidays = "*"
pandas = "*"
python = ">=3.10"
requests = "*"
selenium = "*"
lxml = "*"