-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
60 lines (54 loc) · 1.37 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "domain-park"
version = "0.4.1"
description = "DNS server for parking domains securely"
authors = [
{name = "Nicholas Hairs", email = "[email protected]"},
]
# Dependency Information
requires-python = ">=3.8"
dependencies = [
"nserver==1.0.2",
"netifaces",
"pillar[recommended]==0.3.0",
]
# Extra information
readme = "README.md"
license = {file = "LICENCE"}
classifiers = [
"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",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Topic :: Internet",
"Topic :: Internet :: Name Service (DNS)",
]
[project.urls]
homepage = "https://github.com/nhairs/domain-park"
[project.optional-dependencies]
dev = [ # Centralise dev dependencies
## Building Python Package
"setuptools",
"wheel",
## Formatting / Linting
"black",
"pylint",
"mypy",
## Testing
"pytest",
## Docs
"mkdocs",
"mkdocs-material>=8.5",
"mkdocs-awesome-pages-plugin",
"mdx_truly_sane_lists",
## REPL
"bpython",
]
[project.scripts]
domain-park = "domain_park.cli:main"