forked from smagafurov/fastapi-jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 881 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
[tool.poetry]
name = "fastapi-jsonrpc"
version = "0.2.3"
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.6"
aiojobs = "^0.2.2"
pydantic = "^1.0.0"
starlette = "^0.12.9"
fastapi = "^0.48.0"
[tool.poetry.dev-dependencies]
uvicorn = "^0.8.6"
pygments = "^2.4"
rst_include = "^1.0"
pytest = "^5.2.2"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"