From 970a1d13c0c264f84ba7cbe505632b50f1841939 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 23 Aug 2019 16:13:46 +0200 Subject: [PATCH] setup.py: change project url --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index af0fd8a..75eae24 100755 --- a/setup.py +++ b/setup.py @@ -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",