1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- """
- This is the package.xml data needed for the PHP OpenID PEAR
- package.xml file. Use the 'packagexml.py' program to generate a
- package.xml file for a release of this library.
- """
- leads = [
- {'name': 'Jonathan Daugherty',
- 'user': 'cygnus',
- 'email': 'cygnus@janrain.com',
- 'active': 'yes'},
- {'name': 'Josh Hoyt',
- 'user': 'jhoyt',
- 'email': 'josh@janrain.com',
- 'active': 'yes'}
- ]
- package_name = 'Auth_OpenID'
- package_description = 'An implementation of the OpenID single sign-on authentication protocol.'
- package_summary = 'PHP OpenID'
- license_name = 'Apache'
- license_uri = 'http://www.apache.org/licenses/LICENSE-2.0'
- contents_dirs = ['../Auth',]
- docs_dirs = ['../doc', '../examples']
- package_base_uri = 'http://www.openidenabled.com/resources/downloads/php-openid/pear/'
- release_stability = 'stable'
|