-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
40 lines (39 loc) · 1.34 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
34
35
36
37
38
39
40
[project]
name = "fastapi_auth_middleware"
authors = [
{ name = "Jonas Scholl", email = "[email protected]" },
{ name = "Yannic Schröer", email = "[email protected]" }
]
maintainers = [
{ name = "Jonas Scholl", email = "[email protected]" },
{ name = "Yannic Schröer", email = "[email protected]" }
]
readme = "README.md"
keywords = ['FastAPI', 'Auth', 'Middleware', '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.8"
dynamic = ["version", "description"]
dependencies = [
"anyio>=3.5.0",
"fastapi>=0.73.0",
"idna>=3.3",
"pydantic>=1.9.0",
"sniffio>=1.2.0",
"starlette>=0.17.1",
"typing_extensions>=4.0.1",
"python-jose>=3.3.0",
"certifi>=2022.12.07",
]
[project.urls]
Documentation = "https://github.com/code-specialist/fastapi-auth-middleware"
Source = "https://github.com/code-specialist/fastapi-auth-middleware"