-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.06 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
[tool.poetry]
name = "lok-server"
version = "0.1.0"
description = ""
authors = ["jhnnsrs <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
django = "^4.2.4"
strawberry-graphql = "^0.199.2"
strawberry-graphql-django = "^0.16.0"
channels = "^4.0.0"
kante = "0.1.6"
omegaconf = "^2.3.0"
psycopg = ">=3"
daphne = "^4.0.0"
channels-redis = "^4.1.0"
django-choices-field = "^2.2.2"
authentikate = "0.1.6"
namegenerator = "^1.0.6"
oauthlib = "^3.2.2"
pyjwt = "^2.8.0"
jwcrypto = "^1.5.0"
jinja2 = "^3.1.2"
django-registration = "^3.4"
django-cors-headers = "^4.2.0"
django-allauth = "^0.58.2"
pillow = "^10.1.0"
django-health-check = "^3.18.1"
docker = ">6,<7"
django-probes = "^1.7.0"
livekit-api = "^0.5.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
django-stubs = "^4.2.3"
pytest = "^7.4.3"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "lok.settings_test"
# -- recommended but optional:
python_files = ["test_*.py", "*_test.py", "tests/*.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"