From 99b9b014db31b381e4486c57779ffa5de532c0bd Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Wed, 16 Jul 2014 11:39:05 +0100 Subject: [PATCH] adding environment description for virtualenv General practice influenced by heroku.com is to create a requirements.txt documenting the python library dependencies for the project. This allows a user to easy setup a running environment for the project using virtualenv and pip. Extending .gitignore to ignore venv (reserved for virtualenv use) and vim swap files. Signed-off-by: Alexandru DAMIAN --- .gitignore | 2 ++ requirements.txt | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore index d12dfa9..0010cdb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *.pyc *.db3 +*.swp +venv/ diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0bc28a8 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,17 @@ +Django==1.4 +Jinja2==2.7.3 +MarkupSafe==0.23 +Pillow==2.4.0 +South==0.8.4 +Unidecode==0.04.16 +argparse==1.2.1 +awesome-slugify==1.5 +django-nvd3==0.7.4 +django-registration==0.8 +django-reversion==1.6.0 +django-reversion-compare==0.3.5 +django-simple-captcha==0.4.2 +python-nvd3==0.12.2 +regex==2014.06.28 +six==1.7.3 +wsgiref==0.1.2