forked from cnorthwood/virtualbarcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.13 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
[tool.poetry]
name = "virtualbarcamp"
version = "0.1.0"
description = "A system for hosting online multi-track unconferences"
authors = ["Chris Northwood <chris@barcampmanchester.co.uk>"]
license = "AGPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8"
celery = {extras = ["redis"], version = "^4.4.2"}
channels = "^2.4.0"
channels-redis = "^3.0.1"
daphne = "^2.5.0"
django = {extras = ["argon2"], version = "^3.0.6"}
django-celery-beat = { git = "https://github.com/celery/django-celery-beat", rev = "dba6e43d8d0abaaaa78b07e66a50fb2da8fd74af" }
django-celery-results = "^1.2.1"
django-csp = "^3.6"
graphene-django = "^2.10.1"
graphene-subscriptions = "^1.0.2"
psycopg2-binary = "^2.8.5"
requests = "^2.23.0"
social-auth-app-django = "^4.0.0"
asgiref = "~=3.2.10"
aioredis = "~=1.0"
msgpack = "~=1.0"
"discord.py" = "^1.4.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.0.1"
pytest-django = "^3.8.0"
pytest-mock = "^3.1.1"
pytest-testmon = "^1.0.2"
pytest-watch = "^4.2.0"
pywatchman = "^1.4.1"
[tool.black]
line-length = 100
target-version = ["py38"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"