forked from ExpDev07/coronavirus-tracker-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
43 lines (39 loc) · 835 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
async-asgi-testclient = "*"
async_generator = "*"
asyncmock = "*"
bandit = "*"
black = "==19.10b0"
coveralls = "*"
importlib-metadata = {version="*", markers="python_version<'3.8'"}
invoke = "*"
isort = "*"
pylint = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
[packages]
aiohttp = "*"
asyncache = "*"
cachetools = "*"
dataclasses = {version="*", markers="python_version<'3.7'"}
fastapi = "*"
gunicorn = "*"
idna_ssl = {version="*", markers="python_version<'3.7'"}
python-dateutil = "*"
python-dotenv = "*"
requests = "*"
uvicorn = "*"
[requires]
python_version = "3.8"
[scripts]
dev = "uvicorn app.main:APP --reload"
start = "uvicorn app.main:APP"
fmt = "invoke fmt"
sort = "invoke sort"
lint = "invoke lint"
test = "invoke test"