-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
96 lines (85 loc) · 2.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "notus-scanner"
version = "22.6.5"
description = "A vulnerability scanner for creating results from local security checks (LSCs) "
authors = ["Greenbone AG <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/greenbone/notus-scanner"
repository = "https://github.com/greenbone/notus-scanner"
# Full list: https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = [
"openvas",
"Greenbone Vulnerability Management",
"Vulnerability Scanning",
"Notus",
"Open Scanner Protocol",
"Local Security Checks",
"LSC",
]
packages = [
{ include = "notus" },
{ include = "tests", format = "sdist" },
{ include = "poetry.lock", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.9"
paho-mqtt = ">=1.6,<3.0"
psutil = "^6.1"
python-gnupg = "^0.5.3"
tomli = { version = "<3.0.0", python = "<3.11" }
packaging = "<24.3"
[tool.poetry.group.dev.dependencies]
rope = "^1.12.0"
coverage = ">=7.4.0"
autohooks-plugin-black = ">=22.7.0"
autohooks-plugin-isort = ">=22.8.0"
autohooks-plugin-ruff = ">=24.1.0"
pontos = ">=22.7.2"
autohooks = "^24.1.1"
[tool.poetry.scripts]
notus-scanner = "notus.scanner.daemon:main"
notus-scan-start = "notus.scanner.tools.scanstart:main"
notus-subscriber = "notus.scanner.tools.subscriber:main"
[tool.black]
line-length = 80
target-version = ['py39', 'py310', 'py311', 'py312']
exclude = '''
/(
\.git
| \.venv
| \.github
| \.vscode
| _build
| build
| dist
| docs
)/
'''
[tool.autohooks]
mode = "poetry"
pre-commit = ["autohooks.plugins.black", "autohooks.plugins.ruff"]
[tool.pontos.version]
version-module-file = "notus/scanner/__version__.py"
[tool.coverage.run]
branch = true
omit = ["tests/*", "*/__init__.py"]
source = ["notus"]
[tool.ruff]
line-length = 80
target-version = "py311"
[tool.ruff.lint]
extend-select = ["I", "PLE", "PLW"]