From 7f2de5aeb6c7c862bb38c53bb933f4ecee243b67 Mon Sep 17 00:00:00 2001 From: fivethreeo Date: Thu, 19 May 2011 13:39:50 +0200 Subject: [PATCH] removed django requres in setup.py bumped version --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 5e9e80e..e1a8d74 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ import os setup( name='simple-translation', - version='0.7.1', - description='This is a translation app/plugin with support for django-cms 2.0 plugins in the admin', + version='0.7.2', + description='This is a translation app/plugin with support for django-cms 2.1 plugins in the admin', long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(), author='Oyvind Saltvik', author_email='oyvind.saltvik@gmail.com', @@ -19,9 +19,8 @@ setup( 'Programming Language :: Python', 'Framework :: Django', ], - install_requires = ['Django>=1.2.4'], test_suite = 'simple_translation.test.run_tests.run_tests', include_package_data=True, - zip_safe=False, + zip_safe=False )