forked from codeforamerica/councilmatic
-
Notifications
You must be signed in to change notification settings - Fork 9
/
requirements.txt
93 lines (65 loc) · 1.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# ====================
# Server
# ====================
Django==1.4.10
python-memcached
# ====================
# Database
# ====================
South==0.7.4
psycopg2==2.4.5
# ====================
# API
# ====================
djangorestframework==0.4.0
markdown
# ====================
# Search
# ====================
django-haystack==2.0.0
# Using whoosh as the haystack (search) backend for now, for simplicity (it's
# pure Python). May use pysolr later, but may not need to.
whoosh==2.3.2
# Using my version of pysolr until issue # is pulled, as DOTCLOUD's trailing
# slash on SOLR url breaks pysolr.
#pysolr==3.0.4
git+git://github.com/mjumbewu/pysolr.git#egg=pysolr==3.0.5
# ====================
# Authentication
# ====================
django-social-auth==0.6.7
# ====================
# Template rendering
# ====================
django-uni-form
django-mustachejs==0.6.0
django-model-blocks
django_compressor==1.1.2
slimit==0.7.4
# ====================
# Registration!
# ====================
django-registration==0.8
git+git://github.com/mjumbewu/django-recaptcha.git#egg=django-recaptcha
# ====================
# External services
# ====================
# Requests, for talking HTTP to things like Google's geocoder
requests==0.11.1
# Scraping
git+git://github.com/fgregg/legistar-scrape#egg=legistar-scrape
BeautifulSoup
BeautifulSoup4
pdfminer==20110515
slate
git+https://github.com/abielr/mechanize.git#egg=mechanize
# ====================
# Testing and debugging
# ====================
django-debug-toolbar==0.9.4
#pep8
django-nose==1.0
coverage==3.5.1
mock==0.8.0
# Mamangement and deployment
#fabric