-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (62 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (62 loc) · 1.88 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "asgi-claim-validator"
version = "1.0.4"
description = "A focused ASGI middleware for validating additional claims within JWT tokens to enhance token-based workflows."
authors = ["Fabio Greco <fabio.greco.github@gmail.com>"]
maintainers = ["Fabio Greco <fabio.greco.github@gmail.com>"]
license = "GNU GPLv3"
readme = "README.md"
homepage = "https://github.com/feteu/asgi-claim-validator"
repository = "https://github.com/feteu/asgi-claim-validator"
keywords = [
"asgi",
"async",
"claims",
"connexion",
"fastapi",
"jwt",
"middleware",
"request-duration",
"starlette",
"validator",
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: FastAPI',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development',
'Topic :: Utilities',
'Typing :: Typed',
]
packages = [
{ include = "asgi_claim_validator" },
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
joserfc = ">=1.2.2"
jsonschema = ">=4.23.0"
starlette = ">=0.45.2"
[tool.poetry.group.dev.dependencies]
connexion = {version="*", extras=["swagger-ui"]}
httpx = "*"
jsonschema = "*"
pytest = "*"
pytest-asyncio = "*"
starlette = "*"
uvicorn = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"