-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (36 loc) · 868 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
[project]
name = "opus"
version = "0.1.0"
description = "To-do lists done together!"
authors = [
{name = "gvmossato"},
{name = "HenriqueKen"},
{name = "Higor-Silva1"},
{name = "pfvelu"},
]
dependencies = [
"django>=5.0.6",
"django-environ>=0.11.2",
"whitenoise>=6.6.0",
"djangorestframework>=3.15.1",
"django-cors-headers>=4.3.1",
"six>=1.16.0",
"requests>=2.32.3",
]
requires-python = "==3.12.*"
readme = "README.md"
license = {text = "AGPL-3.0"}
[tool.pdm.scripts]
start = "python manage.py runserver"
migrate = "python manage.py migrate"
collect_static = "python manage.py collectstatic"
make_migrations = "python manage.py makemigrations"
create_su = "python manage.py createsuperuser"
[tool.pdm.dev-dependencies]
dev = [
"mypy>=1.10.0",
"black>=24.4.2",
"isort>=5.13.2",
]
[tool.pdm]
distribution = false