-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (57 loc) · 1.62 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
56
57
58
59
60
61
[tool.poetry]
name = "hacktj_live"
version = "0.1.0"
description = "A massively scalable application for realtime hackathon judging and mentoring."
authors = ["Sumanth Ratna <sumanth@hacktj.org>", "Pranav Mathur <pranav@hacktj.org>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
Django = {extras = ["argon2", "bcrypt"], version = "^4.0"}
channels = "^3.0.2"
gunicorn = "^20.0.4"
uvicorn = {extras = ["standard"], version = "^0.17.0"}
channels-redis = {extras = ["cryptography"], version = "^3.2.0"}
psycopg2 = "^2.8.6"
numpy = "^1.19.3"
scipy = "^1.5.3"
dj-database-url = {git = "https://github.com/jacobian/dj-database-url.git"} # commit 8b48e4bd40e28816a5f0ccc65a1a09e7a474de89
django-compressor = "^3.0"
django-dbbackup = {git = "https://github.com/django-dbbackup/django-dbbackup.git"} # PR #361
django-debug-toolbar = "^3.1.1"
django-allauth = "^0.50.0"
better-exceptions = "^0.3.2"
whitenoise = {extras = ["brotli"], version = "^6.0.0"}
Twisted = {extras = ["tls", "http2"], version = "^21.7.0"}
django-simple-captcha = "^0.5.13"
dealer = "^2.1.0"
prettytable = "^2.0.0"
django-sendgrid-v5 = "^1.1.1"
pymemcache = "^3.4.1"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
diagrams = "^0.21.0"
scour = "^0.38.2"
pre-commit = "^2.10.1"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.yarn
| _build
| buck-out
| build
| dist
| migrations
| static
)/
)
'''