-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 894 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 894 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
37
[project]
name = "Humanify"
version = "0.1.0"
description = "Humanify"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"django>=5.2.4",
"django-cors-headers>=4.7.0",
"django-tasks>=0.8.1",
"djangorestframework>=3.16.0",
"djangorestframework-simplejwt>=5.5.0",
"drf-spectacular[sidecar]>=0.28.0",
"gunicorn>=23.0.0",
"pillow>=11.3.0",
"psycopg[binary]>=3.2.9",
"ultralytics>=8.3.167",
"whitenoise>=6.9.0",
]
[dependency-groups]
dev = [
"faker>=37.4.2",
"factory-boy>=3.3.3",
"coverage>=7.9.2",
"django-debug-toolbar>=5.2.0",
"pytest-django>=4.11.1",
"django-stubs[compatible-mypy]>=5.2.1",
"djangorestframework-stubs[compatible-mypy]>=3.16.1",
"pre-commit>=4.2.0",
]
[tool.setuptools]
packages = ["apps", "humanify_project"]
[tool.pytest.ini_options]
cache_dir = "/home/appuser/.cache/pytest_cache"