xmlconfig.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. """
  2. This is the package.xml data needed for the PHP OpenID PEAR
  3. package.xml file. Use the 'packagexml.py' program to generate a
  4. package.xml file for a release of this library.
  5. """
  6. # This is a list of dicts describing the project leads. This will be
  7. # used to generate <lead> XML elements.
  8. leads = [
  9. {'name': 'Jonathan Daugherty',
  10. 'user': 'cygnus',
  11. 'email': 'cygnus@janrain.com',
  12. 'active': 'yes'},
  13. {'name': 'Josh Hoyt',
  14. 'user': 'jhoyt',
  15. 'email': 'josh@janrain.com',
  16. 'active': 'yes'}
  17. ]
  18. # The package name.
  19. package_name = 'Auth_OpenID'
  20. # The package description.
  21. package_description = 'An implementation of the OpenID single sign-on authentication protocol.'
  22. # Package summary.
  23. package_summary = 'PHP OpenID'
  24. # License string.
  25. license_name = 'Apache'
  26. # License URI.
  27. license_uri = 'http://www.apache.org/licenses/LICENSE-2.0'
  28. # Director(ies) containing package source, relative to the admin/
  29. # directory. All .php files in these directories will be included in
  30. # the <contents> element of the output XML and will be assigned the
  31. # role 'php'.
  32. contents_dirs = ['../Auth',]
  33. # Director(ies) containing package documentation. All files and
  34. # subdirectories in these directories will be included in the
  35. # <contents> element in the output XML and will be assigned the role
  36. # 'doc'.
  37. docs_dirs = ['../doc', '../examples']
  38. # The HTTP package base URI. This is the place on the web where the
  39. # PEAR-installable tarballs will live, and this (plus the package
  40. # tarball name) will be the URL that users pass to "pear install".
  41. package_base_uri = 'http://www.openidenabled.com/resources/downloads/php-openid/pear/'
  42. # The release stability. Maybe this should be a commandline parameter
  43. # since it might differ from release to release.
  44. release_stability = 'stable'