-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 1.72 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
[project]
name = "karaage"
version = "6.3.1"
description = "Web application to manage a HP cluster"
authors = [
{name = "Brian May", email = "brian@linuxpenguins.xyz"},
]
license = {text = "GPL3+"}
readme = "README.rst"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
dependencies = [
"bcrypt",
"cssmin",
"python-alogger",
"django-simple-captcha",
"django-ajax-selects",
"ldap3",
"passlib",
"cryptography>=46.0.5",
"django-tables2",
"django-filter",
"django-environ",
"six",
"whitenoise",
"Django>=5.2.8,<5.3.0",
"cracklib",
"gunicorn",
"mysqlclient",
"sentry-sdk",
"psycopg2-binary",
"pyjwt",
"jsmin>=3.0.1",
"django-tracking-model>=0.1.5",
]
[project.scripts]
kg-manage = "karaage.cli:manage"
[dependency-groups]
dev = [
"pytest>=8.0.1,<10.0.0",
"pytest-cov>=4.1,<8.0",
"flake8<8.0.0,>=7.0.0",
"black>=25.1.0",
"jedi-language-server>=0.44.0",
"pylsp-mypy>=0.7.0",
"python-lsp-server>=1.12.2",
"ruff>=0.11.2",
"mock>=5.2.0",
"pytest-django>=4.10.0",
"setuptools>=78.1.0",
"factory-boy>=3.3.3",
"django-stubs[compatible-mypy]>=5.2.2",
"types-six>=1.17.0.20250515",
]
docs = ["sphinx", "furo"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 120
[tool.hatch.build.targets.wheel]
packages = ["karaage", "tldap"]
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
[tool.django-stubs]
django_settings_module = "karaage.tests.settings"