forked from NC3-LU/Fit4Cybersecurity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.88 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
[tool.poetry]
name = "csskp"
version = "1.0.1"
description = "Fit4Cybersecurity is a self-assessment tool by NC3-LU."
authors = [
"Fabien Mathey <[email protected]>",
"Ruslan Baidan <[email protected]>",
"Cédric Bonhomme <[email protected]>",
"Juan Rocha <[email protected]>"
]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/NC3-LU/Fit4Cybersecurity"
repository = "https://github.com/NC3-LU/Fit4Cybersecurity"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
mypy = "^1.0.1"
django = "^4.1.6"
psycopg2-binary = "^2.8.4"
cryptography = "^41.0.6"
djangorestframework = "^3.12.4"
django-countries = "^7.1"
django-bootstrap-datepicker-plus = "^5.0.3"
django-bootstrap4 = "^1.1.1"
django-bootstrap-modal-forms = "^1.5.0"
django-cookiebanner = "^0.2.7"
bootstrap4 = "^0.1.0"
weasyprint = "^53.3"
PyYAML = "^6.0"
uritemplate = "^4.1.1"
matplotlib = "^3.5.0"
numpy = "^1.24.1"
types-python-dateutil = "^2.8.8"
django-cors-headers = "^3.11.0"
drf-spectacular = {extras = ["sidecar"], version = "^0.25.1"}
fontawesomefree = "^6.4.2"
[tool.poetry.group.dev.dependencies]
sphinx-book-theme = "^0.1.0"
sphinx-autodoc-typehints = "^1.18.3"
gitchangelog = "^3.0.4"
flake8 = "^4.0.1"
django-debug-toolbar = "^3.2.4"
pre-commit = "^3.4.0"
black = "^22.12.0"
pyupgrade = "^3.3.1"
reorder-python-imports = "^3.9.0"
pip-audit = "^2.6.1"
[tool.flake8]
max-line-length = 100
extend-ignore = "E203,"
max-complexity = 15
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true
exclude = "csskp/config_*|survey/migrations|static|survey/*"