Files
tabby-web/pyproject.toml

27 lines
572 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-05-31 20:13:09 +02:00
[tool.poetry.dev-dependencies]
2021-06-12 13:05:35 +02:00
flake8 = "^3.9.2"
2021-05-31 20:13:09 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"