-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
38 lines (34 loc) · 967 Bytes
/
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
[tool.poetry]
name = "cardboard"
version = "0.1.0"
description = "A dashboard for managing puzzles and tracking status during a puzzle hunt."
authors = ["Cardinality Puzzlers <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.10" # keep .github/workflows/pre-submit.yaml synced
Django = "^4.1"
python-dotenv = "^0.19.2"
django-heroku = "^0.3.1"
google-api-python-client = "^2.33.0"
social-auth-app-django = "^5.4.1"
django-taggit = "^2.0.0"
url-normalize = "^1.4.3"
gunicorn = "^22.0.0"
djangorestframework = "^3.13.1"
celery = "^5.2.3"
redis = "^4.1.0"
"discord.py" = "^1.7.3"
django-celery-beat = "^2.4.0"
python-dateutil = "^2.8.2"
django-cors-headers = "^4.3.1"
django-guardian = "^2.4.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
black = "^24.3.0"
coverage = "*"
django-silk = "^5.0.2"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"