-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
64 lines (59 loc) · 1.28 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
62
63
64
[tool.poetry]
name = "Etna"
version = "25.01.30.48"
description = ""
authors = ["James Biggs <[email protected]>"]
[tool.poetry.dependencies]
Django = "~5.1"
django-allauth = "~65.3"
django-birdbath = "~2.0"
django-redis = "~5.4"
django-taggit = "~6.1"
eventbrite = "~3.3"
gunicorn = "~23.0"
nh3 = "~0.2"
platformshconfig = "~2.4"
psycopg2-binary = "~2.9"
pyquery = "~2.0"
python = "^3.12"
python-magic = "~0.4"
sentry-sdk = "~2.20"
wagtail = "~6.3"
wagtail-font-awesome-svg = "~1.0"
wagtail-generic-chooser = "~0.6"
wagtailmedia = "~0.15"
wagtail-metadata = "~5.0"
wagtail-headless-preview = "0.8.0"
whitenoise = "~6.8"
# TODO: Make `optional = true` when moving to AWS (for Docker)
[tool.poetry.group.dev]
optional = false
[tool.poetry.group.dev.dependencies]
coverage = "~7.6"
django-debug-toolbar = "~5.0"
django-extensions = "~3.2"
ipdb = "~0.13"
mkdocs-material = "~9.5"
pymdown-extensions = "~10.14"
responses = "~0.25"
wagtail-factories = "~4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
exclude = '''
/(
| \.eggs
| \.git
| \.mypy_cache
| \.venv
| __pycache__
| _build
| build
| docs
| venv
| node_modules
| migrations
)/
'''