forked from informed-governance-project/NISINP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (81 loc) · 2.18 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
[tool.poetry]
name = "governanceplatform"
version = "0.2.6"
description = "Governance Platform - NISINP"
authors = [
"Cédric Bonhomme <[email protected]>",
"Jérôme Lombardi <[email protected]>",
"Juan Rocha <[email protected]>",
"Ruslan Baidan <[email protected]>",
]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/informed-governance-project/NISINP"
repository = "https://github.com/informed-governance-project/NISINP"
documentation = "https://nisinp.readthedocs.io"
keywords = ["NC3-LU", "NIS", "NIS2", "incident-notification"]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.0.8"
psycopg2-binary = "^2.8.4"
cryptography = "^43.0.1"
django-cors-headers = "^4.3.1"
drf-spectacular = "^0.27.0"
drf-spectacular-sidecar = "^2024.1.1"
django-bootstrap5 = "^23.4"
django-otp = "^1.1.6"
django-formtools = "^2.5.1"
django-two-factor-auth = "^1.15.5"
phonenumbers = "^8.13.11"
django-import-export = "^3.2.0"
parler = "^1.0.1"
django-parler = "^2.3"
django-bootstrap-datepicker-plus = "^5.0.4"
django-countries = "^7.5.1"
weasyprint = "^62.0"
django-extensions = "^3.2.3"
django-parler-rest = "^2.2"
python-dateutil = "^2.8.2"
django-phonenumber-field = "^7.3.0"
django-filter = "^23.5"
pytz = "^2024.1"
plotly = "^5.23.0"
kaleido = "0.2.1"
openpyxl = "^3.1.5"
django-cookiebanner = "^0.2.8"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
pre-commit = "^3.4.0"
black = "^24.3.0"
pyupgrade = "^3.14.0"
autoflake = "^2.2.1"
mypy = "^1.5.1"
types-requests = "^2.31.0.7"
pip-audit = "^2.7.0"
isort = "^5.12.0"
django-debug-toolbar = "^4.2.0"
pyparsing = "^3.1.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-book-theme = "^1.0.1"
sphinxcontrib-openapi = "^0.8.1"
pydot = "^1.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[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