-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (62 loc) · 1.91 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
72
[project]
name = "dbb-ranking-parser"
version = "0.5.0"
description = "Extract league rankings from the DBB (Deutscher Basketball Bund e.V.) website."
readme = "README.rst"
authors = [
{ name = "Jochen Kupperschmidt", email = "[email protected]" }
]
license = { text = "MIT" }
keywords = [ "basketball", "rankings", "scrape" ]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Other/Nonlisted Topic",
]
requires-python = ">=3.9"
dependencies = [
"lxml>=5.3.0",
]
[dependency-groups]
test = [
"pytest>=8.3.4",
]
[project.scripts]
dbb-ranking-parser = "dbbrankingparser.cli:main"
[project.urls]
Website = "https://homework.nwsnet.de/releases/4a51/#dbb-ranking-parser"
"Repository (GitHub)" = "https://github.com/btb-royals/dbb-ranking-parser"
"Repository (Sourcehut)" = "https://sr.ht/~homeworkprod/dbb-ranking-parser/"
Changelog = "https://github.com/btb-royals/dbb-ranking-parser/blob/main/CHANGES.rst"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dbbrankingparser"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
no_implicit_optional = true
[tool.pytest.ini_options]
addopts = "-vv"
testpaths = ["tests"]
[tool.ruff]
line-length = 80
[tool.ruff.format]
quote-style = "single"
line-ending = "lf"
[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true
lines-after-imports = 2
order-by-type = false