__init__.py 653 B

12345678910111213141516171819
  1. """ndg_httpsclient - PyOpenSSL utility to make a httplib-like interface suitable
  2. for use with urllib2
  3. This is a setuptools namespace_package. DO NOT place any other
  4. code in this file! There is no guarantee that it will be installed
  5. with easy_install. See:
  6. http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
  7. ... for details.
  8. """
  9. __author__ = "P J Kershaw"
  10. __date__ = "06/01/12"
  11. __copyright__ = "(C) 2012 Science and Technology Facilities Council"
  12. __license__ = "BSD - see LICENSE file in top-level directory"
  13. __contact__ = "Philip.Kershaw@stfc.ac.uk"
  14. __revision__ = '$Id$'
  15. __import__('pkg_resources').declare_namespace(__name__)