2022-09-13 14:52:06 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "website"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = ""
|
|
|
|
authors = []
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
Django = "4.0.6"
|
2022-09-15 10:05:37 +01:00
|
|
|
wagtail = "3.0.3"
|
2022-09-13 14:52:06 +01:00
|
|
|
django-environ = "0.9.0"
|
|
|
|
whitenoise = {version = "6.2.0", extras = ["brotli"]}
|
|
|
|
Pygments = "2.13.0"
|
|
|
|
beautifulsoup4 = "4.9.3"
|
|
|
|
lxml = "4.9.1"
|
2022-10-24 10:22:58 +01:00
|
|
|
more-itertools = "9.0.0"
|
2022-09-13 14:52:06 +01:00
|
|
|
requests = "2.28.1"
|
|
|
|
wagtail-generic-chooser = "0.4.1"
|
|
|
|
django-rq = "2.5.1"
|
|
|
|
django-redis = "5.2.0"
|
|
|
|
wagtail-draftail-snippet = "0.4.1"
|
|
|
|
gunicorn = "20.1.0"
|
|
|
|
psycopg2 = "2.9.3"
|
|
|
|
djangorestframework = "3.13.1"
|
2022-09-13 17:59:04 +01:00
|
|
|
django-htmx = "1.12.2"
|
2022-09-16 10:05:18 +01:00
|
|
|
wagtail-metadata = "4.0.1"
|
2022-09-21 18:02:55 +01:00
|
|
|
humanize = "4.4.0"
|
2022-09-13 14:52:06 +01:00
|
|
|
django-plausible = "0.3.0"
|
2022-10-24 08:10:58 +01:00
|
|
|
sentry-sdk = "1.10.1"
|
2022-10-21 13:57:04 +01:00
|
|
|
wagtail-favicon = {git = "https://github.com/RealOrangeOne/wagtail-favicon", rev = "fd43adb98e52b6be9f5a9270391a74ec796727ef"}
|
2022-09-13 14:52:06 +01:00
|
|
|
django-sri = "0.5.0"
|
|
|
|
wagtail-2fa = "1.6.0"
|
2022-09-13 22:14:33 +01:00
|
|
|
django-health-check = "3.17.0"
|
2022-10-21 14:07:40 +01:00
|
|
|
wagtail-autocomplete = "0.9.0"
|
2022-09-29 19:12:21 +01:00
|
|
|
Wand = "^0.6.10"
|
2022-10-21 13:20:22 +01:00
|
|
|
django3-cache-decorator = "^0.5.2"
|
2022-10-23 21:30:00 +01:00
|
|
|
django-cors-headers = "^3.13.0"
|
|
|
|
uritemplate = "^4.1.1"
|
2022-09-13 14:52:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
honcho = "1.1.0"
|
|
|
|
flake8 = "4.0.1"
|
|
|
|
isort = "5.10.1"
|
|
|
|
black = "22.6.0"
|
|
|
|
django-browser-reload = "1.6.0"
|
2022-10-23 22:04:57 +01:00
|
|
|
django-debug-toolbar = "3.7.0"
|
2022-09-13 14:52:06 +01:00
|
|
|
types-requests = "2.28.5"
|
|
|
|
mypy = "0.971"
|
|
|
|
wagtail-factories = "3.1.0"
|
2022-10-09 18:10:15 +01:00
|
|
|
coverage = "6.5.0"
|
2022-09-13 14:52:06 +01:00
|
|
|
flake8-bugbear = "22.8.23"
|
|
|
|
flake8-builtins = "1.5.3"
|
|
|
|
flake8-comprehensions = "3.10.0"
|
|
|
|
flake8-mutable = "1.2.0"
|
|
|
|
flake8-print = "5.0.0"
|
|
|
|
flake8-tuple = "0.4.1"
|
2022-10-05 14:17:00 +01:00
|
|
|
djlint = "1.18.0"
|
2022-09-13 14:52:06 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
2022-10-05 14:17:00 +01:00
|
|
|
[tool.djlint]
|
|
|
|
ignore = "T003,H006,H023,H030,H031"
|
2022-08-03 20:22:02 +01:00
|
|
|
indent = 2
|
2022-10-05 14:17:00 +01:00
|
|
|
preserve_blank_lines = true
|
|
|
|
profile = "django"
|
|
|
|
max_line_length = 12000
|
|
|
|
max_attribute_length = 1000
|
|
|
|
extension = "html"
|
|
|
|
format_attribute_template_tags=true
|
|
|
|
custom_blocks="cache"
|
|
|
|
|
|
|
|
[tool.djlint.per-file-ignores]
|
|
|
|
"_snippet_link.html" = "H025"
|