-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[project]
name = "fastapi_keycloak_extended"
authors = [
{ name = "Cedvict Loknov", email = "[email protected]" }
]
maintainers = [
{ name = "Cedvict Loknov", email = "[email protected]" }
]
readme = "README.md"
keywords = ['Keycloak', 'FastAPI', 'Authentication', 'Authorization']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Session',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: FastAPI',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.8',
]
requires-python = ">=3.10"
dynamic = ["version", "description"]
dependencies = [
"fastapi_keycloak>=1.0.10",
]
[project.urls]
Documentation = "https://fastapi-keycloak.code-specialist.com/"
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"