mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* root: Python 3.14 Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update pydantic Signed-off-by: Jens Langhammer <jens@goauthentik.io> * bump kadmin Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add krb5 stuff to compile on macos? Signed-off-by: Jens Langhammer <jens@goauthentik.io> * re-lock Signed-off-by: Jens Langhammer <jens@goauthentik.io> * trigger build * lock uv * bump to 3.14.2 Signed-off-by: Jens Langhammer <jens@goauthentik.io> * output container logs if it failed to start Signed-off-by: Jens Langhammer <jens@goauthentik.io> * relock Signed-off-by: Jens Langhammer <jens@goauthentik.io> * target black and ruff to python 3.14 * upgrade pydatic from 2.11.7 to 2.12.5 * revert ruff to python 3.13 ruff checks * bump docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix makefile Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Marcelo Elizeche Landó <marcelo@goauthentik.io> Co-authored-by: Marcelo Elizeche Landó <marcelo@goauthentik.io>
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[project]
|
|
name = "django-postgres-cache"
|
|
version = "0.1.0"
|
|
description = "Improved Django Postgres Cache"
|
|
requires-python = ">=3.9,<3.15"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
authors = [{ name = "Authentik Security Inc.", email = "hello@goauthentik.io" }]
|
|
keywords = ["django", "cache", "postgres"]
|
|
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Web Environment",
|
|
"Framework :: Django",
|
|
"Framework :: Django :: 4.2",
|
|
"Framework :: Django :: 5.0",
|
|
"Framework :: Django :: 5.1",
|
|
"Framework :: Django :: 5.2",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: MacOS",
|
|
"Operating System :: POSIX",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
dependencies = [
|
|
"django >=4.2,<6.0",
|
|
"django-postgres-extra >=2.0,<2.1",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache"
|
|
Documentation = "https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache"
|
|
Repository = "https://github.com/goauthentik/authentik/tree/main/packages/django-postgres-cache"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.setuptools.packages]
|
|
find = {}
|