forked from dotX12/fastapi-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (36 loc) · 1.09 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
[project]
name = "fastapi-proxy"
authors = [
{ name = "Cedvict Loknov", email = "[email protected]" }
]
maintainers = [
{ name = "Cedvict Loknov", email = "[email protected]" }
]
readme = "README.md"
keywords = ['FastAPI', 'Proxy', 'Gateway', 'Microservice']
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 = [
"aiohttp>=3.7.1",
"fastapi>=0.103.1",
"pydantic==1.8.2",
"python-multipart==0.0.6",
"ujson>=5.8.0",
"starlette==0.27.0"
]
[project.urls]
Documentation = "https://fastapi-proxy.nnenu.com/"
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"