-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
102 lines (96 loc) · 2.94 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["docs"]
[project]
name = "indigo"
description = "A Django application for publishing legislation using Akoma Ntoso"
readme = "README.md"
requires-python = ">= 3.10"
authors = [
{name = "Laws.Africa", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django :: 4.2",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"django>=4.2,<5",
"boto3>=1.7",
"urllib3<2.1", # botocore doesn"t play well with urllib3 > 2.1 see https://github.com/boto/botocore/issues/2926
"bluebell-akn>=3.0.0",
"cssutils>=2.3.0",
"django-ckeditor>=5.8",
"dj-database-url>=0.3.0",
"django-activity-stream>=0.10.0",
"django-allauth[socialaccount]>=64.0.0",
"django-background-tasks-updated>=1.2.8",
"django-compressor>=3.1,<=4.4",
"django-cors-headers>=3.11.0",
"django-countries-plus>=2.0.1",
"django-filter>=24.3",
"django-fsm>=2.6.0",
"django-htmx>=1.15.0",
"django-languages-plus>=1.1.1",
"django-pipeline>=1.6.11,<3.1.0",
"django-recaptcha>=4.0.0",
"django-reversion>=3.0.9",
"django-sass-processor>=1.1",
"django-sass-processor-dart-sass>=0.0.1",
"django-storages>=1.12.3",
"django-templated-email>=2.3.0",
"django-treebeard>=4.5.1",
"djangorestframework-xml>=1.3.0",
"djangorestframework>=3.15.0",
"docpipe @ git+https://github.com/laws-africa/docpipe@867de526a55c3ab4ef580dab9a6d91c7b85eca21",
"drf-spectacular==0.27.2",
"EbookLib>=0.15",
"google-api-python-client>=1.7.9",
"iso8601>=0.1",
"jsonpatch>=1.23",
"lxml>=3.4.1,<5.0.0",
"mammoth>=1.4.4",
"natsort>=8.3",
"requests>=2",
"unicodecsv>=0.14.1",
"whitenoise==5.3.0",
"django-contrib-comments>=1.9.1",
"XlsxWriter>=1.2.6",
# unreleased version of xmldiff that allows us to ignore attributes when diffing
"xmldiff @ git+https://github.com/Shoobx/xmldiff@6980256b10ffa41b5ab80716e63a608f587126db#egg=xmldiff",
"sentry-sdk>=1.16.0",
# for indigo_social
"pillow>=5.2.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/laws-africa/indigo"
"Bug Tracker" = "https://github.com/laws-africa/indigo/issues"
[project.optional-dependencies]
dev = [
"nose",
"flake8",
"django-nose>=1.4.4",
]
test = [
"nose",
"flake8",
"django-nose>=1.4.4",
"coveralls",
"django-webtest>=1.9.4",
"dotmap>=1.3.8",
"sheet2dict==0.1.5"
]
docs = [
"psycopg2-binary",
]
[tool.setuptools.dynamic]
version = {attr = "indigo.version.__version__"}