-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (31 loc) · 1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-adminlogentries"
authors = [
{ name="Adam Taylor", email="[email protected]" },
]
description = "A Django app that provides a ModelAdmin for django.contrib.admin's LogEntry model (with everything except the list disabled)"
readme = "README.rst"
dynamic = ["version"]
dependencies = [
"Django",
]
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ataylor32/django-adminlogentries"
Repository = "https://github.com/ataylor32/django-adminlogentries.git"
Issues = "https://github.com/ataylor32/django-adminlogentries/issues"
Changelog = "https://github.com/ataylor32/django-adminlogentries/blob/master/CHANGELOG.md"
[tool.hatch.build]
include = [
"/admin_log_entries",
]
[tool.hatch.version]
path = "admin_log_entries/__init__.py"