-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (48 loc) · 1.37 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
46
47
48
49
50
51
52
53
[tool.poetry]
name = "mvc-demo"
version = "0.1.0"
description = "This project was generated with fastapi-mvc."
authors = ["abnerjacobsen <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/abnerjacobsen/fastapi-mvc-loguru-demo"
classifiers = [
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = "^3.7"
fastapi = "~0.73.0"
uvicorn = {extras = ["standard"], version = "~0.15.0"}
gunicorn = "~20.1.0"
click = "~7.1.2"
aioredis = "~2.0.0"
aiohttp = "~3.8.0"
loguru = "^0.6.0"
orjson = "^3.6.6"
setproctitle = "^1.2.2"
asgi-correlation-id = "^1.1.2"
[tool.poetry.dev-dependencies]
pytest = "~6.2.4"
pytest-cov = "~2.12.0"
pytest-asyncio = "~0.15.1"
requests = "~2.25.1"
aioresponses = "~0.7.2"
mock = "~4.0.3"
flake8 = "~3.9.2"
flake8-docstrings = "~1.6.0"
flake8-import-order = "~0.18.1"
flake8-todo = "^0.7"
black = "^21.12b0"
[tool.poetry.scripts]
mvc-demo = 'mvc_demo.cli.cli:cli'
mvc-demo-dev = 'mvc_demo.wsgi_uvicorn:run_dev_wsgi'
[tool.poetry.urls]
"Issues" = "https://github.com/abnerjacobsen/fastapi-mvc-loguru-demo"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"