-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
76 lines (69 loc) · 1.78 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
[tool.poetry]
name = "tapir"
version = "0.1.0"
description = ""
authors = ["Michael Kleimann <[email protected]>", "Leon Handreke <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.11"
Django = "^3.2.21"
django-extensions = "3.1.5"
django-bootstrap-datepicker-plus = "^5.0.2"
psycopg2-binary = "^2.9.3"
django-tables2 = "^2.4.1"
django-filter = "^23.3"
tablib = "^3.2.0"
django-phonenumber-field = { extras = ["phonenumbers"], version = "^5.2.0" }
phonenumbers = "^8.12.44"
weasyprint = "^52.5"
django-select2 = "^7.10.0"
django-silk = "^4.2.0"
gunicorn = "^20.1.0"
django-environ = "^0.10.0"
django-bootstrap5 = "^23.3"
django-formtools = "^2.3"
celery = "^5.3.4"
redis = "^5.0.1"
ipython = "^8.1.0"
django-localflavor = "^3.1"
tomlkit = "^0.10.1"
nanoid = "^2.0"
lxml= "^5.1.0"
python-keycloak = "^3.3.0"
webtest = "^3.0.0"
django-webtest = "^1.9.10"
PyJWT = "2.6.0"
unidecode = "^1.3.6"
importlib-resources = "^6.1.0"
tapir-mail = { url = "https://github.com/FoodCoopX/tapir-mail-releases/releases/download/0.0.0-dev-1724852413/tapir_mail-0.0.0.dev1724852413-py3-none-any.whl" }
[tool.poetry.dev-dependencies]
ipython = "^8.1.0"
pre-commit = "^2.17.0"
Werkzeug = "^1.0.1"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
pytest-django = "^4.5.2"
pytest-sugar = "^0.9.4"
selenium = "^3.141.0"
factory-boy = "^3.2.1"
black = "^24.8.0"
ptvsd = "^4.3.2"
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3"
djlint = "^1.35.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.djlint]
profile="django"
[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"