From 6e038e764b061c6702acbb4ea51811f4439d14a7 Mon Sep 17 00:00:00 2001 From: Attila-Mihaly Balazs Date: Tue, 3 Dec 2013 11:09:27 +0200 Subject: [PATCH] Create requirements.txt for easy dependency installation with pip and set up .gitignore --- .gitignore | 7 +++++++ requirements.txt | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .gitignore create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa698c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.pyc +.pydevproject +.settings +.project +log/django.osqa.log +tmp/* + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fd43d5c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +markdown +html5lib +python-openid +South +python-memcached +django==1.3.7 +django-debug-toolbar +django-endless-pagination +pytz + -- 2.45.1