initial commit

This commit is contained in:
Daniel Bauer
2024-08-15 21:22:25 +02:00
commit 74d2c9f10a
4 changed files with 21 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
venv
django_signposting.egg-info/
dist
.idea
build

0
README.md Normal file
View File

View File

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[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"
]