-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
79 lines (72 loc) · 1.72 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
[tool.poetry]
name = "tapir"
version = "0.1.0"
description = ""
authors = ["Leon Handreke <[email protected]>, Théophile Madet <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.12"
Django = "^5.1.2"
django-weasyprint = "^2.3.0"
django-extensions = "^3.2.3"
django-bootstrap-datepicker-plus = "^5.0.5"
psycopg2 = "^2.9.9"
django-tables2 = "^2.7.0"
django-filter = "^23.5"
tablib = "^3.6.1"
django-phonenumber-field = "^8.0.0"
phonenumbers = "^8.13.45"
weasyprint = "^62.3"
django-select2 = "^8.2.1"
django-silk = "^5.2.0"
gunicorn = "^22.0.0"
django-environ = "^0.11.2"
django-bootstrap5 = "^23.4"
celery = "^5.4.0"
redis = "^5.0.8"
ipython = "^8.27.0"
django-chartjs = "^2.3.0"
unidecode = "^1.3.8"
python-barcode = "^0.15.1"
fabric = "^3.2.2"
requests = "^2.32.3"
django-auth-ldap = "^4.8.0"
djangorestframework = "^3.15.2"
django-vite = "^3.0.5"
django-cors-headers = "^4.5.0"
parameterized = "^0.9.0"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
ipython = "^8.27.0"
pre-commit = "^3.8.0"
werkzeug = "^3.0.4"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
pytest-django = "^4.9.0"
pytest-sugar = "^1.0.0"
selenium = "^4.24.0"
factory-boy = "^3.3.1"
icecream = "^2.1.3"
djlint = "^1.35.2"
pypdf = "^4.3.1"
django-upgrade = "^1.21.0"
drf-spectacular = "^0.27.2"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.djlint]
profile = "django"
max_line_length = 120
ignore = "T002,H006,H021,H025,H030,H031"
use_gitignore = true
[tool.coverage.run]
omit = [
"*/migrations/*",
"*/tests/*",
"*/urls.py",
"migrate.py"
]
relative_files = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tapir.settings"
python_files = ["tests.py", "test_*.py", "tests_*.py"]
testpaths = "tapir"