-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.04 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
39
40
41
42
43
44
45
[tool.poetry]
name = "simple_fastapi"
version = "0.1.0"
description = "Basic template with fastapi inside and other needed tools"
authors = ["Nikolay Baryshnikov <root@k0d.ru>"]
[tool.poetry.dependencies]
python = "^3.8"
pytest = "^5.3.4"
ipython = "^7.11.1"
pydantic = "^1.4"
uvicorn = "^0.15.0"
fastapi = "^0.68.1"
requests = "^2.23.0"
aiofiles = "^0.4.0"
pytest-asyncio = "^0.10.0"
tornado = "^6.0.4"
jinja2 = "^2.11.1"
pytils = "^0.3"
pytz = "^2019.3"
Pillow = "^9.0.1"
lxml = "^4.9.1"
gino_starlette = "^0.1.1"
gino = {version = "^1.0rc4", extras = ["gino_starlette"], allow-prereleases = true}
alembic = "^1.4.2"
sqlalchemy-utils = "^0.36.3"
starlette-prometheus = "^0.6.0"
sentry_sdk = "^0.14.3"
pydantic-sqlalchemy = "^0.0.4"
python-dotenv = "^0.13.0"
psycopg2-binary = "^2.8.5"
gunicorn = "^20.0.4"
websockets = "^10.1"
[tool.poetry.dev-dependencies]
pylint = "^2.4.4"
pytest = "^5.3.5"
flake8 = "^3.7.9"
pytest-asyncio = "^0.10.0"
black = "^19.10b0"
pytest-cov = "^2.10.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"