-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.4 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "polardns"
version = "1.6.6"
description = "A specialized authoritative DNS server for penetration testing and vulnerability research."
readme = "README.md"
authors = [{name = "Ivan Jedek", email = "ivan.jedek@oryxlabs.com"}]
maintainers = [{name = "Ivan Jedek", email = "ivan.jedek@oryxlabs.com"}]
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: System :: Networking",
"Topic :: Education :: Testing",
"Topic :: Security",
"Environment :: Console",
]
keywords = ["DNS", "DNS Server", "Testing", "Penetration Testing", "Vulnerability Research", "Fuzzing"]
[project.urls]
Homepage = "https://github.com/oryxlabs/PolarDNS"
Documentation = "https://oryxlabs.github.io/PolarDNS"
Tracker = "https://github.com/oryxlabs/PolarDNS/issues"
[tool.setuptools.packages.find]
include = ["polardns*"]
[project.scripts]
polardns = "polardns.core:main"