-
Notifications
You must be signed in to change notification settings - Fork 11
/
Pipfile
62 lines (58 loc) · 1.22 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
50
51
52
53
54
55
56
57
58
59
60
61
62
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
Flask = "<2.0"
Flask-Login = ">=0.3.0,<0.4.0"
Flask-Mail = "*"
Flask-Migrate = ">=1.3.0"
Flask-RESTful = "*"
Flask-SQLAlchemy = ">=2.2"
Flask-Security = ">=3.0.0"
SQLAlchemy = ">=1.1.0,<1.3"
URLObject = "*"
Werkzeug = ">=0.10.2"
alembic = ">=0.7.3,<1.3"
celery = {extras = ["redis"], version = "<5.0.0"}
click = "<9"
dateparser = "*"
"dogpile.cache" = "*"
elasticsearch = "<7.0.0,>=6.0.0"
email_validator = "*"
flask-simple-api = ">=1.4.0"
flux = ">=1.3.0"
google-api-python-client = "*"
gunicorn = "*"
inflect = "*"
itsdangerous = "<2.0"
logbook = "*"
munch = "*"
"oauth2client" = "*"
pendulum = ">=2.0.1"
pgcli = "*"
"psycopg2" = "*"
pyldap = "*"
pyparsing = "*"
pyyaml = "*"
raven = {extras = ["flask"], version = "*"}
redis = "*"
watchdog = "*"
weber_utils = "*"
[dev-packages]
Flask-Loopback = "*"
backslash = ">=2.31.1"
ipython = "*"
pytest = "*"
pytest-cov = "*"
pytest-selenium = "*"
slash = "*"
tmuxp = "*"
yarl = "*"
[requires]
python_version = "3.9"
[scripts]
manage = "python manage.py"
testserver = "python manage.py testserver"
travis_publish = "python scripts/travis_docker_publish.py"
wsgi = "python manage.py testserver --no-tmux --port 8800"