From a7e9a7c101454b1e40894050f89be967d9797e75 Mon Sep 17 00:00:00 2001 From: volpino Date: Tue, 27 Mar 2012 19:11:21 +0200 Subject: [PATCH] more requirements, some more are missing tough --- .gitignore | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 05fad2e..8f5f161 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ euscanwww/rrd/*.rrd euscanwww/media/charts/*.png *.egg-info +local_settings.py diff --git a/setup.py b/setup.py index f466c1f..b08e46b 100755 --- a/setup.py +++ b/setup.py @@ -81,7 +81,8 @@ setup( 'https://github.com/iksaif/euscan/tarball/' + ('master' if __version__ == '9999' else ('euscan-%s' % __version__)) ), - install_requires=['django-annoying'], + install_requires=['Django==1.3.1', 'django-annoying', 'South', + 'django-piston', 'matplotlib'], package_dir={'': 'pym'}, packages=packages, package_data={},