diff options
Diffstat (limited to 'admin/xmlconfig.py')
-rw-r--r-- | admin/xmlconfig.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/admin/xmlconfig.py b/admin/xmlconfig.py new file mode 100644 index 0000000..5744a8b --- /dev/null +++ b/admin/xmlconfig.py @@ -0,0 +1,27 @@ + +""" +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'} + ] + +template = 'package.xml' + +package_name = 'OpenID' +package_description = 'An implementation of the OpenID single sign-on authentication protocol.' +package_summary = 'PHP OpenID' +license_name = 'LGPL' +license_uri = 'http://www.gnu.org/copyleft/lesser.txt' +contents_dirs = ['../Auth'] +release_stability = 'stable' |