-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPipfile
49 lines (45 loc) · 1.09 KB
/
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
40
41
42
43
44
45
46
47
48
49
[[source]]
name = "pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true
[scripts]
server = "env FLASK_APP=abe.app:app FLASK_ENV=development flask run --port=3000"
test = "pytest"
lint = "flake8 abe tests *.py"
precommit = "bash ./scripts/pre-commit-check"
format = "autopep8 -ir abe tests"
[requires]
python_full_version = "3.6.5" #https://devcenter.heroku.com/articles/python-runtimes
[packages]
arrow = "*"
blinker = "*"
celery = ">=3.1.25"
celery-with-mongodb = ">=3.0"
Flask = "*"
Flask-Cors = "*"
flask-restplus = "*"
Flask-SSLify = "*"
Flask-WTF = "*"
gunicorn = "*"
honcho = ">=1.0.1"
icalendar = ">=3.11.4"
isodate = ">=0.5.4"
mongoengine = ">=0.13.0"
netaddr = "*"
PyJWT = "*"
python-engineio = ">=1.7.0"
requests = ">=2.18.1"
eventlet = "*" # Is this necessary?
greenlet = "*" # Is this necessary?
werkzeug = "<1.0.0"
email-validator = "*"
[dev-packages]
autopep8 = "*"
codecov = "*"
coverage = "*"
flake8 = ">=3.3.0"
mccabe = ">=0.6.1"
pycodestyle = ">=2.3.1" # newer versions are broken https://github.com/PyCQA/pycodestyle/issues/741
pyflakes = ">=1.5.0"
pytest = "*"
pytest-cov = "*"