-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
35 lines (32 loc) · 921 Bytes
/
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
[tool.poetry]
name = "fastapi-jsonrpc"
version = "3.3.0"
description = "JSON-RPC server based on fastapi"
license = "MIT"
authors = ["Sergey Magafurov <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/smagafurov/fastapi-jsonrpc"
homepage = "https://github.com/smagafurov/fastapi-jsonrpc"
keywords = ['json-rpc', 'asgi', 'swagger', 'openapi', 'fastapi', 'pydantic', 'starlette']
exclude = ["example1.py", "example2.py"]
[tool.poetry.dependencies]
python = "^3.9"
aiojobs = ">=1.1.0"
fastapi = [
{version = ">=0.112.4"},
]
pydantic = [
{version = ">=2.7.0"},
{version = "<3.0.0"},
]
starlette = ">0.0.0"
[tool.poetry.dev-dependencies]
uvicorn = "^0.17.0"
rst_include = "^2.1.0"
pytest = "^6.2"
sentry-sdk = "^2.0"
requests = ">0.0.0"
httpx = ">=0.23.0,<0.24.0" # FastAPI/Starlette extra test deps
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"