-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "asgi-request-duration"
version = "1.0.3"
description = "A asgi middleware to measure the request duration"
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-request-duration"
repository = "https://github.com/feteu/asgi-request-duration"
keywords = [
"asgi",
"async",
"connexion",
"fastapi",
"middleware",
"request-duration",
"starlette",
"timing",
]
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_request_duration" },
]
[tool.poetry.dependencies]
python = ">=3.11"
starlette = "^0.43.0"
[tool.poetry.group.dev.dependencies]
uvicorn = "*"
pytest = "*"
starlette = "*"
httpx = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"