Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
early implementation of #26 (redis-based user storage)
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
- Loading branch information
Showing
with
59 additions
and 43 deletions.
- +30 −42 comet/web.py
- +29 −1 requirements.txt
@@ -1,6 +1,34 @@ | ||
git+https://github.com/getnikola/nikola#egg=Nikola | ||
redis==2.10.3 | ||
amqp==1.4.6 | ||
anyjson==0.3.3 | ||
billiard==3.3.0.19 | ||
blinker==1.3 | ||
celery==3.1.17 | ||
docopt==0.6.1 | ||
docutils==0.12 | ||
doit==0.26.0 | ||
Flask==0.10.1 | ||
Flask-Login==0.2.11 | ||
Flask-Bcrypt==0.6.0 | ||
Flask-Login==0.2.11 | ||
itsdangerous==0.24 | ||
Jinja2==2.7.3 | ||
kombu==3.0.24 | ||
Logbook==0.8.1 | ||
lxml==3.4.1 | ||
Mako==1.0.0 | ||
MarkupSafe==0.23 | ||
natsort==3.5.1 | ||
Pillow==2.7.0 | ||
py-bcrypt==0.4 | ||
Pygments==2.0.1 | ||
pyinotify==0.9.5 | ||
PyRSS2Gen==1.1 | ||
python-dateutil==2.4.0 | ||
pytz==2014.10 | ||
redis==2.10.3 | ||
six==1.9.0 | ||
Unidecode==0.4.17 | ||
webassets==0.10.1 | ||
Werkzeug==0.9.6 | ||
Yapsy==1.10.423 |