forked from dashhudson/connections3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
39 lines (35 loc) · 923 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
flask-cors = "==3.0.7"
flask-marshmallow = "==0.10.0"
flask-migrate = "==2.4.0"
flask-sqlalchemy = "==2.3.2"
gunicorn = "==19.9.0"
marshmallow = "==2.19.2"
marshmallow-enum = "==1.4.1"
marshmallow-sqlalchemy = "==0.16.0"
mysqlclient = "==1.4.2.post1"
SQLAlchemy = "==1.3.3"
webargs = "==5.3.0"
flask = "==1.0.2"
[dev-packages]
"flake8" = "==3.6.0"
"flake8-import-order" = "==0.18.1"
"flake8-per-file-ignores" = "==0.8.1"
"flake8-quotes" = "==1.0.0"
"pep8-naming" = "==0.8.2"
factory-boy = "==2.11.1"
Faker = "==1.0.5"
flake8_module_name = {git = "https://github.com/pmdarrow/flake8_module_name.git",ref = "support-numbers"}
pytest = "==4.4.1"
[requires]
python_version = "3.6"
[scripts]
serve = "flask run"
lint = "flake8 ."
test = "pytest -v --cov=."
db-makemigrations = "flask db migrate -m"
db-migrate = "flask db upgrade"