forked from greenbone/python-gvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (67 loc) · 1.79 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "python-gvm"
version = "21.5.2.dev1"
description = "Library to communicate with remote servers over GMP or OSP"
license = "GPL-3.0-or-later"
authors = ["Greenbone Networks GmbH <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/greenbone/python-gvm"
repository = "https://github.com/greenbone/python-gvm"
documentation = "https://python-gvm.readthedocs.io/"
classifiers = [
# Full list: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "gvm" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.7.0"
paramiko = "^2.7.1"
lxml = "^4.5.0"
defusedxml = ">=0.6,<0.8"
[tool.poetry.dev-dependencies]
coverage = "^5.5"
pylint = "^2.8"
sphinx = "^4.0.2"
sphinx-autodoc-typehints = "^1.12.0"
autohooks = "^21.3.0"
autohooks-plugin-pylint = "^1.2.0"
autohooks-plugin-black = "^1.2.0"
black = "21.5b1"
pontos = "^21.4.0"
[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', 'autohooks.plugins.pylint']
[tool.pontos.version]
version-module-file = "gvm/__version__.py"