-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrequirements.txt
75 lines (53 loc) · 1.07 KB
/
requirements.txt
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
63
64
65
66
67
68
69
70
71
72
73
74
75
#
# Requirements for running drf-cached-instances
#
Django>=1.10,<1.11
djangorestframework>=3.4,<3.5
#
# Optional but useful requirements
#
# Celery - async task management
celery==3.1.23
#
# Requirements for developing drf-cached-instances
#
# Packaging
wheel==0.29.0
# PEP8, PEP257, and static analysis
pep8==1.7.0
flake8==3.0.4
pep257==0.7.0
flake8-docstrings==1.0.2
# Code coverage
coverage==4.2
# Better test runner
django-nose==1.4.4
# Django extensions
django-extensions==1.7.1
# Documentation
Sphinx==1.4.5
# Packaging Linters
pyroma==2.0.2
check-manifest==0.31
# Multi-env test runner
tox==2.3.1
# Better interactive debugging
ipython==5.1.0
ipdb==0.10.1
# Production quality serving of static files
dj-static==0.0.6
# ./manage.py runserver_plus for better tracebacks
Werkzeug==0.11.10
# Django debug toolbar
django-debug-toolbar==1.11.1
# Testing library, added as unittest.mock in Python 3.3
mock==2.0.0
# Load database settings from environment
dj-database-url==0.4.1
#
# Requirements for Heroku
#
# WSGI runner
gunicorn==19.6.0
# PostgreSQL driver
psycopg2==2.6.2