-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
55 lines (53 loc) · 1.3 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tool.black]
line-length = 120
target-version = ['py310', 'py311']
include = '\.pyi?$'
exclude = '\.run|\.git|.venv|\.mysql|\.vscode|\.devcontainer|migrations|playbooks'
[project]
name = "WebVirtBackend"
version = "0.1.0"
description = "WebVirtCloud backend"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ansible==10.0.1",
"celery==5.2.7",
"crispy-tailwind==0.5.0",
"django==4.2.18",
"django-celery-results==2.4.0",
"django-crispy-forms==2.0",
"djangorestframework==3.14.0",
"gunicorn==20.1.0",
"mysqlclient==2.1.1",
"numpy==1.25.2",
"paramiko==3.4.1",
"passlib==1.7.4",
"requests==2.28.2",
"weasyprint==60.2",
"websockify==0.10.0",
]
[dependency-groups]
dev = [
"ansible==10.0.1",
"black>=24.10.0",
"bpython>=0.25",
"celery==5.2.7",
"crispy-tailwind==0.5.0",
"django==4.2.18",
"django-browser-reload>=1.17.0",
"django-celery-results==2.4.0",
"django-cors-headers>=4.6.0",
"django-crispy-forms==2.0",
"django-debug-toolbar>=5.0.1",
"djangorestframework==3.14.0",
"drf-yasg>=1.21.8",
"flake8>=7.1.1",
"gunicorn==20.1.0",
"mysqlclient==2.1.1",
"numpy==1.25.2",
"paramiko==3.4.1",
"passlib==1.7.4",
"requests==2.28.2",
"weasyprint==60.2",
"websockify==0.10.0",
]