-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (46 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-admin-dracula"
version = "0.0.4"
description = "Dracula theme for the Django admin"
authors = [
{name="Sangeeta Jadoonanan", email="[email protected]"}
]
readme = "README.md"
license = "MIT"
keywords = [
"django",
"django admin",
"dracula",
"dracula theme",
"python"
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
]
[project.urls]
Homepage = "https://github.com/dracula/django-admin"
Repository = "https://github.com/dracula/django-admin"
Issues = "https://github.com/dracula/django-admin/issues"
[tool.uv]
dev-dependencies = [
"coverage>=7.6.4",
]