Skip to content

Commit

Permalink
updating pyproject.toml and making it compatible with pypa/build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarcelo committed Feb 29, 2024
1 parent fa17761 commit dab9426
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
name = "fastapi_keycloak"
authors = [
{ name = "Jonas Scholl", email = "jonas@code-specialist.com" },
{ name = "Yannic Schröer", email = "yannic@code-specialist.com" }
{ name = "Yannic Schröer", email = "yannic@code-specialist.com" },
{ name = "Alex Barceló", email = "alex@betarho.net" }
]
maintainers = [
{ name = "Jonas Scholl", email = "jonas@code-specialist.com" },
{ name = "Yannic Schröer", email = "yannic@code-specialist.com" }
{ name = "Alex Barceló", email = "alex@betarho.net" }
]
readme = "README.md"
keywords = ['Keycloak', 'FastAPI', 'Authentication', 'Authorization']
classifiers = [
'Development Status :: 3 - Alpha',
Expand All @@ -22,7 +21,8 @@ classifiers = [
'Programming Language :: Python :: 3.8',
]
requires-python = ">=3.8"
dynamic = ["version", "description"]
dynamic = ["version", "readme"]
description = "Keycloak API Client for integrating authentication and authorization with FastAPI"
dependencies = [
"anyio>=3.4.0",
"asgiref>=3.4.1",
Expand All @@ -49,3 +49,7 @@ dependencies = [

[project.urls]
Documentation = "https://fastapi-keycloak.code-specialist.com/"

[tool.setuptools.dynamic]
version = {attr = "fastapi_keycloak.__version__"}
readme = {file = ["README.md"]}

0 comments on commit dab9426

Please sign in to comment.