-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
77 lines (70 loc) · 1.48 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
66
67
68
69
70
71
72
73
74
75
76
77
[tool.poetry]
name = "tnaomegauiprototypes"
version = "0.1.0"
description = ""
authors = ["Nick Lee"]
[tool.poetry.dependencies]
python = "~3.8"
django = "~3.2"
wagtail = "~2.15"
psycopg2 = "~2.8"
gunicorn = {version = "~20.1", optional = true}
wagtail-django-recaptcha = "1.0"
django-pattern-library = "~0.5"
whitenoise = "~5.3"
dj-database-url = "~0.5"
sentry-sdk = "~1.0"
django-redis = "~5.0"
django-storages = { version ="~1.11", extras = ["boto3"] }
django-referrer-policy = "~1.0"
django-csp = "~3.6"
scout-apm = "~2.23"
django-basic-auth-ip-whitelist = "~0.3.4"
wagtail-accessibility = "~0.2"
wagtail-storages = "~0.0.6"
coverage = "^5.4"
wagtail-factories = "^2.0.1"
django-defender = "0.9.1"
djhtml = "^1.4.11"
[tool.poetry.extras]
gunicorn = ["gunicorn"]
[tool.poetry.dev-dependencies]
Werkzeug = "~0.16"
django-extensions = "~2.2"
stellar = "~0.4"
# Linters etc.
black = "20.8b1"
detect-secrets = "~0.14"
flake8 = "3.8.3"
isort = "5.7.0"
pre-commit = "~2.11"
# Documentation
mkdocs = "~1.1"
mkdocs-material = "~6.2"
pymdown-extensions = "~8.1"
pudb = "^2020.1"
honcho = "^1.0.1"
[build-system]
requires = ["poetry>=1,<2"]
build-backend = "poetry.masonry.api"
[tool.black]
line_length = 88
target-version = ['py38']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
| \.venv
| __pycache__
| _build
| build
| dist
| docs
| venv
| node_modules
)/
)
'''