-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 1.07 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "graver"
dynamic = ["version", "description"]
authors = [{ name = "Larry McQueary", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = ["beautifulsoup4==4.12.2", "lxml==4.9.3", "tqdm==4.66.1", "typer==0.9.0"]
[project.optional-dependencies]
dev = ["black", "isort"]
test = ["coveralls", "flake8", "isort", "pytest", "faker", "coverage", "pytest-cov"]
deploy = ["python-semantic-release"]
[project.urls]
Home = "https://github.com/mcqueary/graver"
[project.scripts]
graver = "graver.cli:app"
[tool.setuptools.dynamic]
version = {attr = "package.__version__"}
[tool.setuptools.packages.find]
where = ["src"]