-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPipfile
More file actions
42 lines (40 loc) · 666 Bytes
/
Copy pathPipfile
File metadata and controls
42 lines (40 loc) · 666 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
# test libarary
# required module: libsqlite3-dev
pytest = "*"
pytest-env = "*"
pytest-cov = "*"
pytest-asyncio = "*"
tox = "*"
# for fastapi testclient
requests ="*"
# lint library
mypy = "*"
pycodestyle = "*"
pylint = "*"
# 19.10b0 설치 호환 버그로 version fixed
black = "==19.3b0"
[packages]
# web framework
fastapi = "*"
# asgi
uvicorn = "*"
# auth
python-multipart = "*"
pyjwt = "*"
# file
aiofiles = "*"
# encrypt
passlib = "*"
bcrypt = "*"
# database orm
sqlalchemy = "*"
pymysql = "*"
# jwt rsa algorithm
cryptography = "*"
[requires]
python_version = "3.8"