-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·43 lines (40 loc) · 1 KB
/
pyproject.toml
File metadata and controls
executable file
·43 lines (40 loc) · 1 KB
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
[project]
name = "app"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"channels>=4.2.2",
"channels-redis>=4.2.1",
"confluent-kafka==2.10.0",
"cryptography>=45.0.4",
"dj-database-url>=3.0.0",
"django>=5.2.3",
"django-allauth>=65.9.0",
"django-cors-headers>=4.7.0",
"django-environ>=0.12.0",
"django-prometheus>=2.4.0",
"django-redis>=6.0.0",
"django-split-settings>=1.3.2",
"djangorestframework>=3.16.0",
"djangorestframework-simplejwt>=5.5.0",
"pillow>=11.3.0",
"psycopg>=3.2.9",
"psycopg2-binary>=2.9.10",
"requests>=2.32.4",
"uv>=0.7.13",
"uvicorn>=0.34.3",
"uwsgi>=2.0.30",
]
[tool.setuptools.packages.find]
include = ["config*", "oauth*"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings.local"
python_files = ["test_*.py", "*_test.py", "tests.py"]
[dependency-groups]
dev = [
"pytest>=8.4.0",
"pytest-django",
"pytest-cov",
]