forked from wagtail/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (42 loc) · 1001 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
39
40
41
42
43
44
45
46
47
[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.9"
django = ">=4.1,<4.2"
wagtail = ">=4.0,<4.1"
django-manifest-loader = "^1.0.0"
lxml = ">=4.9,<5"
djangorestframework = ">=3.13.1,<4.0"
dj-database-url = "1.0.0"
django-storages = "1.13.1"
whitenoise = "6.2.0"
psycopg2 = "2.9.3"
wagtail-localize = "^1.3.1"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
django-extensions = "^3.2.1"
flake8 = "^5.0.4"
isort = "^5.10.1"
wagtail-factories = "^3.1.0"
coverage = "^6.5.0"
[tool.poetry.group.production.dependencies]
gunicorn = "20.1.0"
django-redis = "5.2.0"
sentry-sdk = "1.9.5"
django-basic-auth-ip-whitelist = "0.5a"
boto3 = "^1.24.93"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py39']
extend-exclude = '''
migrations
'''