-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
56 lines (51 loc) · 1.3 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "adhocracy4"
authors = [
{name = "Liquid Democracy e.V.", email = "[email protected]"},
]
description = "Adhocracy 4 core library"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["digital participation"]
license = {text = "AGPL-3"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
"bleach[css]",
"Django >= 3.2, < 4.3",
"django-allauth",
"django-autoslug",
"django-background-tasks",
"django-ckeditor-5",
"django-enumfield",
"django-filter",
"django-multiselectfield",
"django-widget-tweaks",
"djangorestframework >= 3.5",
"easy-thumbnails[svg]",
"html5lib",
"jsonfield",
"python-dateutil",
"python-magic",
"rules",
"XlsxWriter",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/liqd/adhocracy4"
"Bug Tracker" = "https://github.com/liqd/adhocracy4/issues"
[tool.setuptools.packages.find]
include = ["adhocracy4"]
[tool.setuptools_scm]
[tool.isort]
profile = "black"
skip = ["node_modules", "venv"]
skip_glob = ["*/migrations/*.py"]
known_first_party = ["adhocracy4", "tests"]
force_single_line = true