-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.04 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
[tool.poetry]
name = "guide"
version = "0.1.0"
description = "Wagtail User Guide"
authors = [
"Guide contributors <[email protected]>",
]
license = "BSD-3-Clause"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11"
django = ">=4.2,<5.0"
wagtail = ">=5.2,<6.0"
django-manifest-loader = "^1.0.0"
lxml = ">=4.9,<5"
djangorestframework = ">=3.13.1,<4.0"
dj-database-url = ">=2.1,<2.2"
django-storages = ">=1.14,<1.15"
whitenoise = ">=6.6,<6.7"
psycopg2 = "2.9.9"
wagtail-localize = "1.7rc1"
django-permissions-policy = "^4.13.0"
django-csp = "^3.7"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.4"
black = "^23.10.1"
django-extensions = "^3.2.1"
wagtail-factories = "^4.1.0"
coverage = "^7.3.2"
[tool.poetry.group.production.dependencies]
gunicorn = "21.2.0"
django-redis = ">=5.4,<5.5"
sentry-sdk = ">=1.34,<1.35"
django-basic-auth-ip-whitelist = "0.5"
boto3 = "^1.24.93"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py311']
extend-exclude = '''
migrations
'''