-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.12 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
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "porthound4"
version = "0.1.0"
description = "PortHound4 network scanner with master/agent orchestration."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "PortHound4 Authors" }]
keywords = ["network", "scanner", "security", "tcp", "udp", "banner"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[project.scripts]
porthound = "manage:main"
[tool.setuptools]
py-modules = [
"agent",
"app",
"banner_rules",
"country_centroids",
"framework",
"geoip_seed",
"getDBNIC",
"manage",
"master",
"scan_payloads",
"server",
"settings",
"ws_demo",
]
include-package-data = true
[tool.setuptools.data-files]
"porthound/data" = ["data/**"]
"porthound/docs" = ["docs/**"]
"porthound/frontend" = ["frontend/dist/**"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]