mirror of
https://github.com/dnlbauer/django-signposting.git
synced 2026-09-10 14:05:31 +00:00
* improvate jsonld parsing to be compatible with ro-crate * refactoring * example with RO-Crate * bump version --------- Co-authored-by: Daniel Bauer <daniel.bauer@senckenberg.de>
34 lines
687 B
TOML
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.2"
|
|
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"]
|