You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
653 B
19 lines
653 B
10 years ago
|
"""ndg_httpsclient - PyOpenSSL utility to make a httplib-like interface suitable
|
||
|
for use with urllib2
|
||
|
|
||
|
This is a setuptools namespace_package. DO NOT place any other
|
||
|
code in this file! There is no guarantee that it will be installed
|
||
|
with easy_install. See:
|
||
|
|
||
|
http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
|
||
|
|
||
|
... for details.
|
||
|
"""
|
||
|
__author__ = "P J Kershaw"
|
||
|
__date__ = "06/01/12"
|
||
|
__copyright__ = "(C) 2012 Science and Technology Facilities Council"
|
||
|
__license__ = "BSD - see LICENSE file in top-level directory"
|
||
|
__contact__ = "Philip.Kershaw@stfc.ac.uk"
|
||
|
__revision__ = '$Id$'
|
||
|
|
||
|
__import__('pkg_resources').declare_namespace(__name__)
|