Commit b6d3ef78 by Elliot Murphy

Add long_description to setup.py as suggested in the review.

Move debian packaging to a separate branch, as we'll want to
make a release tarball that doesn't include the debian dir.
parent 85bae6e6
python-django-openid-auth (0.1ubuntu0) jaunty; urgency=low
* Initial release.
-- Elliot Murphy (personal) <elliot.murphy@gmail.com> Wed, 08 Apr 2009 15:07:49 -0400
Source: python-django-openid-auth
Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com>
XSBC-Original-Maintainer: Elliot Murphy <elliot@canonical.com>
Uploaders: James Henstridge <jamesh@canonical.com>
Section: python
Priority: optional
Standards-Version: 3.8.0
Build-Depends-Indep:
python-central (>= 0.6.7)
Build-Depends:
cdbs (>= 0.4.51),
debhelper (>= 6.0.4),
python (>= 2.5)
XS-Python-Version: all
Homepage: https://launchpad.net/django-openid-auth
Package: python-django-openid-auth
Architecture: all
XB-Python-Version: ${python:Versions}
Depends: ${python:Depends},
${misc:Depends},
python-pkg-resources
Provides: ${python:Provides}
Description: OpenID integration for django.contrib.auth
A library that can be used to add OpenID support to Django applications.
The library integrates with Django's builtin authentication system, so
most applications require minimal changes to support OpenID login.
The library also includes the following features:
* Basic user details are transfered from the OpenID server via the Simple Registration extension.
* can be configured to use a fixed OpenID server URL, for use in single sign on deployments.
* supports the Launchpad teams extension to request team membership information.
This is python-django-openid-auth, packaged for Ubuntu by Elliot Murphy.
Homepage is https://launchpad.net/django-openid-auth
Copyright (C) 2007 Simon Willison
Copyright (C) 2008-2009 Canonical Ltd.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
DEB_PYTHON_SYSTEM = pycentral
include /usr/share/cdbs/1/class/python-distutils.mk
......@@ -33,6 +33,15 @@ from distutils.core import setup
setup(name = 'django-openid-auth',
version = '0.1',
description = 'OpenID integration for django.contrib.auth',
long_description = """A library that can be used to add OpenID support to
Django applications. The library integrates with Django's built in
authentication system, so most applications require minimal changes to
support OpenID llogin. The library also includes the following features:
* Basic user details are transferred from the OpenID server via the simple
Registration extension.
* can be configured to use a fixed OpenID server URL, for use in SSO.
* supports the launchpad.net teams extension to get team membership info.
""",
url = 'https://launchpad.net/django-openid-auth',
packages = ['django_openid_auth',
'django_openid_auth/management',
......
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