-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (73 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (73 loc) · 1.66 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
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
78
79
80
81
[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 = "adrian.vollmer@syss.de"},
]
description = "Visualize portscan results"
readme = "README.md"
requires-python = ">=3.10"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
'bokeh>=3.7',
'click',
'hdbscan>=0.8.0',
'lxml',
'pandas',
'python-libnmap',
'scikit-learn',
'zundler',
'numba',
]
[project.urls]
"Homepage" = "https://github.com/SySS-Research/Scanscope"
[tool.ruff]
line-length = 120
extend-exclude = ["src/scanscope/portmap.py"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
# "S", # flake8-bandit
]
ignore = []
[tool.hatch.build.targets.sdist]
include = ["src/"]
[tool.hatch.version]
source = "vcs"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pyright",
"ruff",
'beautifulsoup4',
'pytest',
'umap-learn',
]
umap = [
"umap-learn",
]
optimize = [
"optuna>=4.0.0",
"plotly",
"umap-learn", # Optimization typically uses UMAP
]
[project.scripts]
scanscope = "scanscope.__main__:main"