diff --git a/setup.py b/setup.py index 44aeb75..81ff918 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ class eo_sdist(_sdist): sub_commands = [('compile_translations', None)] + _build.sub_commands def run(self): - print("creating VERSION file") + print('creating VERSION file') if os.path.exists('VERSION'): os.remove('VERSION') version = get_version() @@ -54,7 +54,7 @@ class eo_sdist(_sdist): version_file.write(version) version_file.close() _sdist.run(self) - print("removing VERSION file") + print('removing VERSION file') if os.path.exists('VERSION'): os.remove('VERSION') @@ -93,14 +93,14 @@ def get_version(): setup( - name="django-mellon", + name='django-mellon', version=get_version(), - license="AGPLv3 or later", - description="SAML 2.0 authentication for Django", + license='AGPLv3 or later', + description='SAML 2.0 authentication for Django', long_description=open('README').read(), - url="http://dev.entrouvert.org/projects/django-mellon/", + url='http://dev.entrouvert.org/projects/django-mellon/', author="Entr'ouvert", - author_email="info@entrouvert.org", + author_email='info@entrouvert.org', include_package_data=True, packages=find_packages(), install_requires=[