-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (88 loc) · 2.37 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
93
94
95
96
97
98
99
100
[tool.poetry]
name = "testing-platform"
version = "2.1.1"
description = "NC3 Testing Platform"
authors = [
"Romain Kieffer <[email protected]>",
"Philippe Parage <[email protected]>",
"Cédric Bonhomme <[email protected]>",
]
license = "AGPL-3.0-or-later"
readme = "README.md"
packages = [{include = "testing_platform"}]
homepage = "https://github.com/NC3-LU/TestingPlatform"
repository = "https://github.com/NC3-LU/TestingPlatform"
documentation = "https://testingplatform.readthedocs.io"
keywords = ["test", "security", "internet-standard"]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
django = "^4.2.11"
django-bootstrap5 = "^22.1"
django-icons = "^22.1"
django-widget-tweaks = ">=1.4.8,<1.5.0"
django-q = ">=1.3.9,<1.4.0"
python-decouple = ">=3.5,<4.0"
dj-database-url = ">=0.5.0,<0.6.0"
requests = "^2.28.2"
pyjwt = ">=2.2.0,<2.5.0"
sgqlc = ">=14.1,<15.0"
croniter = ">=1.0.15,<1.1.0"
imap-tools = "^0.57.0"
xmltodict = "^0.13.0"
ipwhois = "^1.2.0"
onekey-client = "^2.0.2"
psutil = "^5.9.4"
certifi = "^2023.7.22"
django-enumfields = "^2.1.1"
pypandora = "^1.4.0"
checkdmarc = "^4.5.2"
python3-nmap = "^1.6.0"
python-owasp-zap-v2-4 = "^0.0.21"
pycryptodome = "^3.19.1"
pandas = "^2.0.2"
djangorestframework = "^3.14.0"
drf-spectacular = "^0.26.4"
drf-spectacular-sidecar = "^2023.7.1"
django-extensions = "^3.2.3"
weasyprint = "^60.1"
django-cors-headers = "^4.3.0"
djangorestframework-simplejwt = "^5.3.0"
[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.6.1"
isort = "^5.12.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-book-theme = "^1.0.1"
sphinx-multiversion = "^0.2.4"
sphinx-autodoc-typehints = "^1.20.1"
sphinxcontrib-mermaid = "^0.7.1"
sphinxcontrib-bibtex = "^2.5.0"
sphinxcontrib-openapi = "^0.8.1"
pydot = "^1.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.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 = "migrations|docs"
[tool.isort]
profile = "black"