This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (69 loc) · 1.92 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
[build-system]
requires = ["setuptools", "wheel"]
[tool.poetry]
name = "ospd-example-scanner"
version = "21.4.0.dev1"
description = "ospd based example scanner"
authors = ["Greenbone Networks GmbH <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
classifiers=[
# Full list: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
keywords = [
"Greenbone Vulnerability Management",
"Vulnerability Scanning",
"OSP",
"Open Scanner Protocol",
]
packages = [
{ include = "ospd_example_scanner"},
{ include = "tests", format = "sdist" },
{ include = "CHANGELOG.md", format = "sdist"},
{ include = "COPYING", format = "sdist"},
{ include = "poetry.lock", format = "sdist"},
{ include = "poetry.toml", format = "sdist"},
{ include = "setup.py", format = "sdist"},
{ include = "MANIFEST.in", format = "sdist"},
]
[tool.poetry.dependencies]
python = "^3.7"
ospd = {git = "https://github.com/greenbone/ospd.git", branch = "master"}
[tool.poetry.dev-dependencies]
pylint = "^2.5.3"
rope = "^0.18.0"
autohooks-plugin-pylint = "^1.2.0"
autohooks-plugin-black = {version = "^1.2.0", python = "^3.7"}
black = {version = "20.8b1", python = "^3.7"}
pontos = "^0.3.0"
[tool.poetry.scripts]
ospd-example-scanner = "ospd_example_scanner.daemon:main"
[tool.black]
line-length = 80
target-version = ['py37', 'py38']
skip-string-normalization = true
exclude = '''
/(
\.git
| \.hg
| \.venv
| \.circleci
| \.github
| \.vscode
| _build
| build
| dist
| docs
)/
'''
[tool.autohooks]
mode = "poetry"
pre-commit = ['autohooks.plugins.black']
[tool.pontos.version]
version-module-file = "ospd_example_scanner/__version__.py"