setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. try:
  2. from setuptools import setup, find_packages
  3. except ImportError:
  4. from ez_setup import use_setuptools
  5. use_setuptools()
  6. from setuptools import setup, find_packages
  7. setup(
  8. name='ndg_httpsclient',
  9. version="0.1.0",
  10. description='Provides HTTPS for httplib and urllib2 using PyOpenSSL',
  11. author='Richard Wilkinson',
  12. long_description=open('README').read(),
  13. license='BSD - See LICENCE file for details',
  14. namespace_packages=['ndg'],
  15. packages=find_packages(),
  16. classifiers = [
  17. 'Development Status :: 5 - Production/Stable',
  18. 'Environment :: Console',
  19. 'Environment :: Web Environment',
  20. 'Intended Audience :: End Users/Desktop',
  21. 'Intended Audience :: Developers',
  22. 'Intended Audience :: System Administrators',
  23. 'Intended Audience :: Science/Research',
  24. 'License :: OSI Approved :: GNU Library or Lesser General Public License (BSD)',
  25. 'Natural Language :: English',
  26. 'Operating System :: Microsoft :: Windows',
  27. 'Operating System :: POSIX :: Linux',
  28. 'Programming Language :: Python',
  29. 'Topic :: Security',
  30. 'Topic :: Internet',
  31. 'Topic :: Scientific/Engineering',
  32. 'Topic :: System :: Distributed Computing',
  33. 'Topic :: System :: Systems Administration :: Authentication/Directory',
  34. 'Topic :: Software Development :: Libraries :: Python Modules'
  35. ],
  36. zip_safe = False,
  37. entry_points = {
  38. 'console_scripts': ['ndg_httpclient = myproxy.script:main',
  39. ],
  40. }
  41. )