-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1013 Bytes
/
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
[tool.poetry]
name = "fit4cybersecuritystats"
version = "0.1.0"
description = "Gathers data from different Fit4CyberSecurity instances and generates reports, stats, etc."
authors = ["Cédric Bonhomme <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.27.1"
Jinja2 = "^3.0.3"
bokeh = "^2.4.2"
pandas = "^1.4.1"
Flask = "^2.0.2"
mypy = "^0.931"
types-requests = "^2.27.9"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pre-commit = "^2.17.0"
black = "^22.3.0"
pyupgrade = "^2.31.1"
reorder-python-imports = "^3.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.10"
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