-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "django-starter-api"
version = "0.1.0"
description = "Headless Django + Django-Ninja starter for pure API development"
authors = [
{name = "DealiAxy", email = "dealiaxy@gmail.com"},
]
dependencies = [
"django[argon2]>=6.0",
"django-ninja>=1.5.3",
"django-cors-headers>=4.9.0",
"django-split-settings>=1.3.2",
"django-simple-history>=3.11.0",
"django-otp>=1.6.1",
"django-allauth>=0.63.0",
"django-simple-captcha>=0.6.3",
"django-multi-captcha-admin>=2.0.0",
"django-ratelimit>=4.1.0",
"django-redis>=6.0.0",
"django-watchfiles>=1.4.0",
"django-jazzmin>=3.0.1",
"redis>=7.1.0",
"requests>=2.32.5",
"orjson>=3.11.5",
"pydantic>=2.12.5",
"pyjwt>=2.10.1",
"pycryptodome>=3.23.0",
"prometheus-client>=0.24.1",
"pillow>=12.1.0",
"qrcode>=8.0",
"jinja2>=3.1.6",
"markdown>=3.7",
"tblib>=3.2.2",
"wechatpy>=1.8.18",
"daphne>=4.2.1",
"django-starter-core>=0.1.0",
]
requires-python = "==3.14.*"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
ds-test = "infra.runtests:main"
[dependency-groups]
dev = [
"django-debug-toolbar>=6.1.0",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-django>=4.11.1",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "config.settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.uv.sources]
django-starter-core = { path = "../django-starter-core", editable = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/apps", "src/config", "src/infra"]