-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Pipfile
49 lines (45 loc) · 821 Bytes
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
black = "==19.10b0"
invoke = "*"
isort = "*"
pre-commit = "*"
pytest = "*"
coverage = "*"
codecov = "*"
asynctest = "*"
aiohttp = "*"
asyncmock = "*"
async-asgi-testclient = "*"
pytest-asyncio = "*"
[packages]
asyncache = "*"
cached = "*"
fastapi = "*"
loguru = "*"
motor = "==2.0.0"
gunicorn = "*"
pydantic = "*"
pyyaml = "*"
python-dateutil = "*"
asyncio = "*"
uvicorn = "*"
aiohttp = "*"
httptools = "*"
aiocache = "*"
dependency-injector = "*"
aioredis = "*"
coverage = "*"
pytest = "*"
async-asgi-testclient = "*"
typing-extensions = "*"
[requires]
python_version = "3.7"
[scripts]
start = 'uvicorn backend.main:api'
dev = 'uvicorn backend.main:api --reload --log-level=debug'
sort = 'invoke sort'
format = 'invoke black'