Files
django-signposting/pyproject.toml
2024-08-15 22:51:59 +02:00

26 lines
494 B
TOML

[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "django_signposting"
authors = [
{name = "Daniel Bauer", email = "github@dbauer.me"}
]
description = "Add FAIR signpostings to response headers"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"Django>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[pytest]
minversion = 6.0
addopts = "-ra -q"
testpaths = ["tests"]