-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
33 lines (31 loc) · 1.14 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
[project]
name = "dalf"
version = "0.2.6"
authors = [
{ name="Uğur Özyılmazel", email="[email protected]" },
]
description = "Dead simple autocompletion for Django admin list_filter with goodies."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
]
keywords = ["django", "django admin", "list filter"]
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["Django", "pytest", "pytest-django", "pytest-factoryboy", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/vigo/django-admin-list-filter"
Repository = "https://github.com/vigo/django-admin-list-filter"
Issues = "https://github.com/vigo/django-admin-list-filter/issues"