Commit 96820457 by James Henstridge

Fix the download_url in the distutils metadata.

parent 07f2da6f
......@@ -43,17 +43,19 @@ from distutils.core import setup
description, long_description = __doc__.split('\n\n', 1)
VERSION = '0.1'
setup(
name='django-openid-auth',
version='0.1',
version=VERSION,
author='Canonical Ltd',
description=description,
long_description=long_description,
license='BSD',
platforms=['any'],
url='https://launchpad.net/django-openid-auth',
download_url='https://launchpad.net/django-openid-auth/+download',
download_url=('http://launchpad.net/django-openid-auth/trunk/%s/+download'
'/django-openid-auth-%s.tar.gz' % (VERSION, VERSION)),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment