mirror of
https://github.com/dnlbauer/django-signposting.git
synced 2026-09-10 14:05:31 +00:00
31 lines
598 B
TOML
31 lines
598 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.10.0"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"Django>=3.0",
|
|
"signposting>=0.9.9",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/dnlbauer/django-signposting"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
]
|
|
|
|
[pytest]
|
|
minversion = 6.0
|
|
addopts = "-ra -q"
|
|
testpaths = ["tests"]
|