forked from greenbone/hyperion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.08 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
[tool.poetry]
name = "hyperion"
version = "0.1.0.dev1"
description = "Next Generation Architecture for GVM"
authors = ["Greenbone Networks <[email protected]>"]
readme = "README.md"
license = "AGPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.7"
django = "^3.0.4"
graphene-django = "^2.9.0"
python-gvm = "^21.1.3"
django-cors-headers = "^3.2.1"
[tool.poetry.dev-dependencies]
autohooks = "^2.2.0"
autohooks-plugin-black = "^1.2.0"
autohooks-plugin-pylint = "^1.2.0"
pylint-django = "^2.3.0"
coverage = "^5.0.4"
sphinx = "^3.4.3"
black = "20.8b1"
pontos = "^0.3.0"
icalendar = "^4.0.6"
[tool.black]
line-length = 80
target-version = ['py36', '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.autohooks.plugins.pylint]
arguments = ["--django-settings-module=hyperion.settings"]
[tool.pontos.version]
version-module-file = "hyperion/__version__.py"