forked from coldfront/coldfront
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (119 loc) · 2.81 KB
/
pyproject.toml
File metadata and controls
129 lines (119 loc) · 2.81 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coldfront"
version = "1.1.7"
requires-python = ">=3.10"
authors = [
{ name = "Andrew E. Bruno" },
{ name = "Dori Sajdak" },
{ name = "Mohammad Zia" },
]
description = "HPC Resource Allocation System"
readme = "README.md"
license = "AGPL-3.0-or-later"
license-files = ["LICENSES/*.txt"]
keywords = ["high-performance-computing", "resource-allocation"]
classifiers = [
'Programming Language :: Python :: 3',
'Framework :: Django :: 4.2',
'Topic :: Scientific/Engineering',
'Topic :: System :: Systems Administration',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
dependencies = [
"crispy-bootstrap5>=2025.6",
"django>5.2,<6",
"django-crispy-forms>=2.3",
"django-environ>=0.12.0",
"django-filter>=25.1",
"django-htmx>=1.27.0",
"django-model-utils>=5.0.0",
"django-q2>=1.7.6",
"django-settings-export>=1.2.1",
"django-simple-history>=3.8.0",
"django-split-settings>=1.3.2",
"django-su>=1.0.0",
"django-vite>=3.1.0",
"djangorestframework>=3.16.0",
"doi2bib>=0.4.0",
"formencode>=2.1.1",
"gunicorn>=23.0.0",
"humanize>=4.12.2",
"python-dateutil>=2.9.0.post0",
"redis>=5.2.1",
]
[project.urls]
"Bug Tracker" = "https://github.com/coldfront/coldfront/issues"
Changelog = "https://github.com/coldfront/coldfront/blob/main/CHANGELOG.md"
Documentation = "https://docs.coldfront.dev"
"Source Code" = "https://github.com/coldfront/coldfront"
[project.scripts]
coldfront = "coldfront:manage"
gunicorn = "gunicorn.app.wsgiapp:run"
[project.optional-dependencies]
ldap = [
"django-auth-ldap>=5.1.0",
"ldap3>=2.9.1",
]
freeipa = [
"dbus-python>=1.4.0",
"ipaclient>=4.12.2",
"setuptools==80.6.0",
"cryptography==43.0.3",
]
iquota = [
"kerberos>=1.3.1",
]
oidc = [
"mozilla-django-oidc>=4.0.1",
]
mysql = [
"mysqlclient>=2.2.7",
]
pg = [
"psycopg2>=2.9.10",
]
[dependency-groups]
dev = [
"django-sslserver>=0.22",
"django-upgrade>=1.29.1",
"factory-boy>=3.3.3",
"faker>=37.1.0",
"pytest-django>=4.11.1",
"reuse>=5.0.2",
"ruff>=0.11.4",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-awesome-pages-plugin>=2.10.1",
"mkdocstrings>=0.29.1",
"mkdocstrings-python>=1.16.10",
"pygments",
"pymdown-extensions",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.uv]
required-version = ">=0.9.13" # Make sure this version matches what is in the Dockerfile
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"I",
"S308",
"S113",
]
[tool.ruff.format]
indent-style = "space"
docstring-code-format = true