-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
39 lines (36 loc) · 937 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
[project]
authors = [
{name = "My Name", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "<4.0,>=3.8"
dependencies = [
"Django<5.0.0,>=4.0.3",
"myapp-cli",
"click<9.0.0,>=8.1.0",
"django-environ<1.0.0,>=0.8.1",
"djangomix<2.0.0,>=1.1.3",
"mysqlclient<3.0.0,>=2.1.0",
"psycopg2<3.0.0,>=2.9.5",
"sentry-sdk[django]<2.0.0,>=1.29.2",
"whitenoise<7.0.0,>=6.5.0",
"gunicorn<22.0.0,>=21.2.0",
"wagtail<6.0.0,>=5.1.1",
"django-extensions<4.0.0,>=3.2.3",
"werkzeug<3.0.0,>=2.3.7",
]
name = "myapp"
version = "0.0.0"
description = "Some description"
[dependency-groups]
dev = [
"pytest<8.0.0,>=7.1.1",
"django-extensions<4.0.0,>=3.1.5",
"django-debug-toolbar<4.0.0,>=3.2.4",
"pytest-djangoapp<1.0.0,>=0.15.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
myapp-cli = { path = "sub-src/myapp_cli" }