xppl/Pipfile
Luke Murphy 28dff36daf
Remove molecule from here.
We provide documentation in the `ansible/` directory on how to install
it and run the tests. I imagine many people won't do that, so better to
remove it from here.
2018-11-18 13:54:05 +01:00

35 lines
784 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
"pypdf2" = "*"
autocomplete = "*"
eventlet = "*"
flask = "*"
flask-socketio = "*"
flask-sqlalchemy = "*"
flask-weasyprint = "*"
flask-wtf = "*"
gunicorn = "*"
marshmallow = "*"
pyrqlite = {git = "https://github.com/rqlite/pyrqlite.git"}
python-dotenv = "*"
requests = "*"
sqlalchemy-rqlite = {git = "https://github.com/rqlite/sqlalchemy-rqlite.git"}
wand = "*"
[dev-packages]
ipdb = "*"
isort = "*"
pylava = "*"
pytest = "*"
tox = "*"
[scripts]
devserver = "bash -c 'FLASK_APP=scripts/devserver.py flask run'"
devshell = "bash -c 'FLASK_APP=scripts/devshell.py flask shell'"
prodserver = "gunicorn --worker-class eventlet -w 1 wsgi:app"
prodshell = "bash -c 'FLASK_APP=wsgi.py flask shell'"