-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
47 lines (41 loc) · 1.17 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
[project]
name = "django-public-admin"
version = "0.0.6"
description = "A public read-only version of the Django Admin"
authors = [{name = "Eduardo Cuducos", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
]
requires-python = ">=3.9"
dependencies = [
"django>=4.2",
]
[project.urls]
Repository = "https://github.com/cuducos/django-public-admin"
[tool.pytest.ini_options]
addopts = "--ruff --ruff-format"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.hatch.build.targets.wheel]
packages = ["public_admin",]
[tool.uv]
dev-dependencies = [
"pytest-ruff>=0.4.1",
"tox>=4.18.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"