-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
65 lines (61 loc) · 1.26 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
65
[tool.poetry]
name = "Etna"
version = "24.12.12.42"
description = ""
authors = ["James Biggs <[email protected]>"]
[tool.poetry.dependencies]
Django = "~5.1"
django-allauth = "~0.62"
django-birdbath = "~2.0"
django-redis = "~5.4"
django-taggit = "~5.0"
eventbrite = "~3.3"
gunicorn = "~23.0"
nh3 = "~0.2"
platformshconfig = "~2.4"
psycopg2-binary = "~2.9"
pyquery = "~2.0"
python = "^3.11"
python-magic = "~0.4"
sentry-sdk = "~2.17"
wagtail = "~6.2"
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"
[tool.poetry.dev-dependencies]
black = "~24.10"
coverage = "~7.6"
django-debug-toolbar = "~4.4"
django-extensions = "~3.2"
flake8 = "~7.0"
ipdb = "~0.13"
isort = "~5.13"
mkdocs-material = "~9.5"
pymdown-extensions = "~10.12"
responses = "~0.25"
wagtail-factories = "~4.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line_length = 88
target-version = ['py39']
exclude = '''
(
/(
\.eggs
| \.git
| \.mypy_cache
| \.venv
| __pycache__
| _build
| build
| docs
| venv
| node_modules
)/
)
'''