forked from dotX12/fastapi-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 911 Bytes
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
[tool.poetry]
name = "fastapi_gateway_ultra"
version = "0.1.0"
description = "FastAPI gateway for microservices."
authors = ["dotX12"]
maintainers = ["xitowzys <xitowzys@gmail.com>"]
license = "MIT License"
keywords = ["python", "fastapi", "gateway", "api", "microservice", "microservices", "server side discovery"]
readme = "README.md"
homepage = "https://github.com/xitowzys-ISZF/fastapi-gateway"
repository = "https://github.com/xitowzys-ISZF/fastapi-gateway"
include = [
"README.md",
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.7"
ujson = "^5.5.0"
aiohttp = "^3.7.4"
[tool.poetry.group.tests.dependencies]
pytest = "^7.3.1"
httpx = "^0.24.0"
fastapi = "^0.95.1"
python-multipart = "^0.0.6"
uvicorn = "^0.22.0"
pytest-asyncio = "^0.21.0"
[build-system]
requires = ["poetry-core>=1.0.0", "wheel>=0.36,<1.0", "poetry>=1.1,<2", "virtualenv==20.0.33"]
build-backend = "poetry.core.masonry.api"