Flask setup

This commit is contained in:
richard-dds
2018-08-01 10:51:14 -04:00
parent 1a6d42f385
commit 6a5d3d57cf
8 changed files with 318 additions and 223 deletions

13
Pipfile
View File

@@ -4,20 +4,23 @@ verify_ssl = true
name = "pypi"
[packages]
tornado = "==5.0.2"
webassets = "==0.12.1"
Unipath = "==1.1"
tornado = "*"
webassets = "*"
Unipath = "*"
wtforms-tornado = "*"
pendulum = "*"
redis = "*"
sqlalchemy = "*"
alembic = "*"
"psycopg2-binary" = "*"
flask = "*"
flask-sqlalchemy = "*"
flask-assets = "*"
[dev-packages]
bandit = "*"
pytest = "==3.6.0"
pytest-tornado = "==0.5.0"
pytest = "*"
pytest-tornado = "*"
ipython = "*"
ipdb = "*"
pylint = "*"