forked from cookiecutter-flask/cookiecutter-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
61 lines (49 loc) · 1 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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
# Flask
Flask = "==1.1.2"
Werkzeug = "==1.0.1"
click = ">=5.0"
# Database
Flask-SQLAlchemy = "==2.4.4"
SQLAlchemy = "==1.3.23"
psycopg2-binary = "==2.8.6"
# Migrations
Flask-Migrate = "==2.7.0"
# Forms
email-validator = "==1.1.2"
Flask-WTF = "==0.14.3"
WTForms = "==2.3.3"
# Deployment
gevent = "==21.1.2"
gunicorn = ">=19.1.1"
supervisor = "==4.2.2"
# Flask Static Digest
Flask-Static-Digest = "==0.2.1"
# Auth
Flask-Login = "==0.5.0"
Flask-Bcrypt = "==0.7.1"
# Caching
Flask-Caching = ">=1.0.0"
# Debug toolbar
Flask-DebugToolbar = "==0.11.0"
# Environment variable parsing
environs = "==9.3.1"
[dev-packages]
# Testing
pytest = "==6.2.2"
WebTest = "==2.0.35"
factory-boy = "==3.2.*"
pdbpp = "==0.10.2"
# Lint and code style
black = "==19.10b0"
flake8 = "==3.9.0"
flake8-blind-except = "==0.2.0"
flake8-debugger = "==4.0.0"
flake8-docstrings = "==1.5.0"
flake8-isort = "==4.0.0"
isort = "==5.7.0"
pep8-naming = "==0.11.1"