-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
41 lines (38 loc) · 919 Bytes
/
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
[project]
name = "DjangoStarter"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "DealiAxy", email = "[email protected]"},
]
dependencies = [
"django[argon2]>=5.0.6",
"django-ninja>=1.1.0",
"django-simpleui>=2024.4.1",
"django-multi-captcha-admin>=2.0.0",
"django-simple-captcha>=0.6.0",
"django-cors-headers>=4.3.1",
"django-ratelimit>=4.1.0",
"orjson>=3.10.0",
"pyjwt>=2.8.0",
"wechatpy>=1.8.18",
"django-redis>=5.4.0",
"simpleui>=2024.4.1",
"pycryptodome>=3.20.0",
"tblib>=3.0.0",
"jinja2>=3.1.4",
"faker>=25.5.0",
"django-split-settings>=1.3.1",
"django-compressor>=4.5",
"daphne>=4.1.2",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.1.1",
"django-debug-toolbar>=4.3.0",
]