-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
92 lines (88 loc) · 1.93 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[project]
name = "cdh-django-core"
description = "A Django apps library for CDH projects"
version = "3.2.0"
readme = "README.md"
authors = [
{name = "DH-IT Portal Development", email = "[email protected]"},
{name = "ILS Labs", email = "[email protected]"},
]
requires-python = ">=3.9"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Framework :: Django :: 4.0",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Linux",
]
dependencies = [
"Django >=4.2,<5.1",
"Deprecated",
]
[project.urls]
repository = "https://github.com/CentreForDigitalHumanities/django-shared-core"
documentation = "https://centrefordigitalhumanities.github.io/django-shared-core/"
[project.optional-dependencies]
all = [
"cdh-django-core[recommended,core,mail,federated-auth,files,rest,vue]"
]
recommended = [
"django-modeltranslation",
"django-debug-toolbar",
"django-extensions",
"django-braces",
"bpython",
]
core = [
"django-impersonate",
"django-simple-menu",
"djangorestframework",
"django-csp",
"cryptography",
"Django >=4.2,<5.1",
]
mail = [
"Django >=4.2,<5.1",
]
federated-auth = [
"djangosaml2",
]
files = [
"python-magic",
"Django >=4.2,<5.1",
]
integration_platform = [
"cdh-django-core[rest]",
"Django >=4.2,<5.1",
]
rest = [
"requests",
"PyJWT",
"djangorestframework",
"django-filter",
"Django >=4.2,<5.1",
]
vue = [
"pyscss",
"lesscpy",
"closure",
"vbuild",
"Django >=4.2,<5.1",
]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"sphinxcontrib-django2",
"uu_sphinx_theme @ git+https://github.com/CentreForDigitalHumanities/sphinx-theme.git@main",
]
dev = [
"pip-tools",
"bpython",
"faker",
"cdh-django-core[all,docs]",
]