removed django requres in setup.py bumped version

This commit is contained in:
fivethreeo 2011-05-19 13:39:50 +02:00
parent 95d21232b0
commit 7f2de5aeb6
1 changed files with 3 additions and 4 deletions

View File

@ -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
)