-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
72 lines (65 loc) · 1.71 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 = "peeringdb"
version = "2.3.0"
description = "PeeringDB Django models"
readme = "README.md"
authors = [{ name = "PeeringDB", email = "[email protected]" }]
license = { text = "BSD-2-Clause" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
]
dependencies = [
"confu>=1",
"munge[toml,tomlkit,yaml]>=1.2.0",
"twentyc.rpc>=1",
"pyyaml>=6.0.1",
"httpx>=0.24.1",
]
[project.scripts]
peeringdb = "peeringdb.cli:main"
[project.urls]
repository = "https://github.com/peeringdb/peeringdb-py"
[tool.uv]
dev-dependencies = [
"django_peeringdb>=3.1.0",
"django>=4.2",
"pytest>=8",
"pytest-cov>=5",
"tox>=4",
"tox-gh-actions>=3",
"tox-uv>=1.13.0",
"mypy>=0.950",
"pre-commit>=2.13",
"ruff>=0.1",
"markdown>=3",
"markdown-include>=0.5,<1",
"mkdocs>=1.2.3",
"ctl>=1",
"jinja2>=3",
"tmpl>=1",
"twine>=3",
]
[tool.ruff.lint]
extend-select = [
"I", # isort
"UP", # pyupgrade
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"