-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
77 lines (69 loc) · 1.69 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
73
74
75
76
77
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nserver"
version = "3.0.0.dev1"
description = "DNS Name Server Framework"
authors = [
{name = "Nicholas Hairs", email = "[email protected]"},
]
# Dependency Information
requires-python = ">=3.8"
dependencies = [
"dnslib",
"pillar~=0.3",
"tldextract",
"typing-extensions;python_version<'3.10'",
]
# Extra information
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
"Topic :: Internet",
"Topic :: Internet :: Name Service (DNS)",
]
[project.urls]
HomePage = "https://nhairs.github.io/nserver"
GitHub = "https://github.com/nhairs/nserver"
[project.optional-dependencies]
dev = [
"tox",
"tox-uv",
## Formatting / Linting
"validate-pyproject[all]",
"black",
"pylint",
"mypy",
## Testing
"pytest",
## Build
"setuptools",
"wheel",
## Docs
"black",
"mkdocs",
"mkdocs-material>=8.5",
"mkdocs-awesome-pages-plugin",
"mdx_truly_sane_lists",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mike",
]
[project.scripts]
nserver = "nserver.__main__:main"
[tool.setuptools.package-data]
nserver = ["py.typed"]
[tool.black]
line-length = 100