Files
tabby-web/backend/pyproject.toml

35 lines
775 B
TOML
Raw Normal View History

2021-05-31 20:13:09 +02:00
[tool.poetry]
2021-07-06 23:45:52 +02:00
name = "tabby-web"
2021-05-31 20:13:09 +02:00
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.7"
Django = "^3.2.3"
django-rest-framework = "^0.1.0"
2021-06-12 13:05:35 +02:00
channels = "^3.0.3"
uvloop = "^0.15.2"
2021-06-15 23:43:23 +02:00
djangorestframework-dataclasses = "^0.9"
2021-06-16 23:49:44 +02:00
social-auth-app-django = "^4.0.0"
2021-06-17 23:28:03 +02:00
python-dotenv = "^0.17.1"
2021-06-20 22:42:58 +02:00
websockets = "^9.1"
2021-06-25 21:55:40 +02:00
gql = "^2.0.0"
2021-07-06 23:45:52 +02:00
dj-database-url = "^0.5.0"
2021-07-07 00:18:01 +02:00
mysqlclient = "^2.0.3"
2021-07-07 01:00:40 +02:00
uvicorn = "^0.14.0"
gunicorn = "^20.1.0"
Twisted = "20.3.0"
2021-07-11 16:13:18 +02:00
semver = "^2.13.0"
requests = "^2.25.1"
2021-07-16 20:25:00 +02:00
pyga = "^2.6.2"
2021-07-25 14:00:22 +02:00
django-cors-headers = "^3.7.0"
2021-05-31 20:13:09 +02:00
[tool.poetry.dev-dependencies]
2021-06-12 13:05:35 +02:00
flake8 = "^3.9.2"
2021-07-11 16:13:18 +02:00
black = {version = "^21.6b0", allow-prereleases = true}
2021-05-31 20:13:09 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"