setup.py: change project url

This commit is contained in:
Benjamin Dauvergne 2019-08-23 16:13:46 +02:00
parent efe821b5e7
commit 970a1d13c0
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ class eo_bdist_wheel(bdist_wheel):
version_file = open('VERSION', 'w')
version_file.write(version)
version_file.close()
super(eo_bdist_wheel, self).run()
bdist_wheel.run(self)
print("removing VERSION file")
if os.path.exists('VERSION'):
os.remove('VERSION')
@ -68,7 +68,7 @@ setup(name="django-gssapi",
license="AGPLv3 or later",
description="GSSAPI authentication for Django",
long_description=open('README').read(),
url="http://dev.entrouvert.org/projects/authentic/",
url="http://dev.entrouvert.org/projects/django-gssapi/",
author="Entr'ouvert",
author_email="info@entrouvert.org",
maintainer="Benjamin Dauvergne",