-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
35 lines (31 loc) · 781 Bytes
/
Pipfile
File metadata and controls
35 lines (31 loc) · 781 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
pytest = "==5.3.5"
pytest-mock = "==2.0.0"
pytest-cov = "==2.8.1"
autopep8 = "==1.4"
flake8 = "==3.7.8"
[packages]
flask = "==1.1.1"
flask-swagger-ui = "==3.20.9"
flasgger = "==0.9.3"
Flask-Cors = "==3.0.9"
gunicorn = "==20.0.4"
dynaconf = "==2.2.2"
sentry-sdk = "==0.13.5"
prometheus-client = "==0.7.1"
sqlalchemy = "==1.3.13"
alchemy-mock = "==0.4.3"
marshmallow = "==3.4.0"
pymysql = "==0.9.3"
requests = "==2.22.0"
[requires]
python_version = "3.6"
[scripts]
start = "python main.py"
test = "python -m pytest --cov=app ./tests/unit/ -vv --cov-report term-missing"
lint = "flake8 . --max-line-length 100 --exclude .venv/"
integration-test = "python -m pytest ./tests/integration/ -vv"