summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-07-16 11:39:05 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2014-09-24 11:32:34 +0100
commit99b9b014db31b381e4486c57779ffa5de532c0bd (patch)
tree3c3b71c4cdc5226c147f1408255c2f0f910af259
parent749793f55bfbaf3d93c02ce48ae96ba9dbedfb98 (diff)
downloadopenembedded-core-contrib-99b9b014db31b381e4486c57779ffa5de532c0bd.tar.gz
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 <alexandru.damian@intel.com>
-rw-r--r--.gitignore2
-rw-r--r--requirements.txt17
2 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index d12dfa95e3..0010cdb61a 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 0000000000..0bc28a8922
--- /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