-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 827 Bytes
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
[project]
name = "evmap-backend"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"Django==6.0.*",
"aiohttp==3.13.*",
"requests==2.32.*",
"opening-hours-py==1.1.*",
"django-countries==8.2.*",
"django-ninja==1.5.*",
"python-dotenv==1.2.*",
"psycopg[c,pool] @ git+https://github.com/akx/psycopg.git@speed-up-split-query#subdirectory=psycopg",
"django-solo==2.5.*",
"paho-mqtt==2.1.*",
"python-dateutil",
"pytz",
"tqdm",
"defusedxml",
"cryptography",
"django-pgbulk==3.3.*",
"dalf==0.7.1",
"celery[redis]==5.6.*"
]
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest==9.0.*",
"pytest-django==4.11.*",
"django-silk==5.5.*"
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
testpaths = ["src/tests"]