-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.15 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "Liquid Website"
authors = [
{name = "Liquid Democracy e.V.", email = "info@liqd.net"},
]
description = "Website of Liquid Democracy e.V."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["digital participation", "liquid democracy"]
license = {text = "AGPL-3"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"Django >= 3.2, < 4.3",
"bleach[css] >= 6.0",
"brotli",
"django-cloudflare-push",
"django-multiselectfield",
"django_csp",
"html5lib",
"sentry-sdk",
"wagtail >=4.1, < 5.3",
"whitenoise",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/liqd/liqd-site"
"Bug Tracker" = "https://github.com/liqd/liqd-site/issues"
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]
[tool.black]
line_length = 79
[tool.isort]
profile = "black"
skip = ["node_modules", "venv"]
skip_glob = ["*/migrations/*.py"]
known_first_party = ["website_wagtail"]
force_single_line = true