-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (34 loc) · 879 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
36
37
[tool.poetry]
name = "python-sanic-example"
version = "1.0.0"
description = "Python sanic apllication example"
authors = ["hisdream86 <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "3.8.1"
sanic = "21.9.3"
sanic-openapi = "21.6.1"
pydantic = "1.8.2"
pytz = "2021.3"
sqlalchemy = {version = "1.4.29", extras = ["asyncio"]}
alembic = "1.7.5"
asyncpg = "0.25.0"
psycopg2 = "2.9.2"
sqlalchemy-utils = "0.38.2"
tomlkit = "0.7.2"
python-dateutil = "2.8.2"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.7b0"
pytest = "^6.2.4"
pytest-mock = "^3.6.1"
pytest-asyncio = "^0.16.0"
pytest-aiohttp = "^0.3.0"
pytest-cov = "^3.0.0"
sanic_testing = "^0.7.0"
pytest-postgresql = "^4.0.0"
psycopg = {version = "3.0.4", extras = ["binary"]}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"