Files
django-signposting/pyproject.toml
Daniel Bauer 0cd321112f Extract signposts from jsonld (#1)
* use rdflib to extract signposts from jsonld

* use rdflib to extract signposts from jsonld

* linting

* unit tests for jsonld middleware

* update readme

* update flake pipeline

---------

Co-authored-by: Daniel Bauer <daniel.bauer@senckenberg.de>
2024-11-11 13:02:55 +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.10.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"]