forked from smagafurov/fastapi-jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 953 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
[tool.poetry]
name = "fastapi-jsonrpc"
version = "2.1.2"
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"
fastapi = ">0.55"
[tool.poetry.dev-dependencies]
uvicorn = "^0.14.0"
pygments = "^2.4"
rst_include = "^2.1.0"
pytest = "^6.2"
# python-dateutil 2.8.1 needs six but has no dependency
six = "^1.15.0"
requests = "^2.26.0"
sentry-sdk = "^1.3.0"
[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"