-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (63 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (63 loc) · 2.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "adminlte-django"
version = "0.1.1"
description = "Official AdminLTE 4 integration for Django — Bootstrap 5.3, vanilla JS, Vite-ready."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [{ name = "ColorlibHQ" }]
keywords = ["django", "adminlte", "bootstrap", "admin", "dashboard", "template"]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"Django>=6.0",
"django-components>=0.150,<0.151",
"django-vite>=3.1,<4.0",
]
[project.optional-dependencies]
test = [
"pytest>=9.0",
"pytest-django>=4.12",
]
# Native data UI: server-side sortable/paginated tables + filter forms,
# themed for AdminLTE (DJANGO_TABLES2_TEMPLATE = "django_tables2/adminlte.html").
tables = [
"django-tables2>=3.0",
"django-filter>=25.2",
]
# One-line whole-form rendering ({% crispy form %}). AdminLTE 4 is Bootstrap 5,
# so the crispy-bootstrap5 pack renders natively — no custom pack needed.
crispy = [
"django-crispy-forms>=2.6",
"crispy-bootstrap5>=2026.3",
]
# AdminLTE-themed django-allauth (overrides allauth's layouts + elements).
allauth = [
"django-allauth>=65.18",
]
# Build the documentation site: pip install -e .[docs] && mkdocs serve
docs = [
"mkdocs-material>=9.7",
]
[project.urls]
Homepage = "https://adminlte.io"
Repository = "https://github.com/ColorlibHQ/adminlte-django"
[tool.hatch.build.targets.wheel]
packages = ["django_adminlte4"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = ["test_*.py", "*_test.py"]