Files
django-signposting/pyproject.toml
Daniel Bauer b29f19d78a add middleware to add signposting links into html head (#3)
* add middleware to add signposting links into html head
2024-11-25 15:44:46 +01:00

34 lines
687 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 in Django"
version = "0.11.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12.3",
"django>=3.0",
"signposting>=0.9.9",
"rdflib>=7.1.1",
]
license = {file= "LICENSE"}
[project.urls]
Homepage = "https://github.com/dnlbauer/django-signposting"
[project.optional-dependencies]
dev = [
"pytest",
]
[pytest]
minversion = 6.0
addopts = "-ra -q"
testpaths = ["tests"]