-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1 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
[build-system]
requires = ["hatchling>=1.24.2", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[project]
name = "scanscope"
dynamic = ["version"]
authors = [
{name = "Adrian Vollmer", email = "[email protected]"},
]
description = "Visualize portscan results"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["pentest", "portscan", "nmap", "data-science", "visualization"]
license = {text = "MIT License"}
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
'beautifulsoup4',
'bokeh>=3.2',
'lxml',
'joblib',
'numpy',
'pandas',
'python-libnmap',
'umap-learn',
'pyxdg',
'zundler',
]
[tool.hatch.version]
source = "vcs"
[project.scripts]
scanscope = "scanscope.__main__:main"