setup.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Copyright 2008 Lime Nest LLC
  2. # Copyright 2008 Lime Spot LLC
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. # http://www.apache.org/licenses/LICENSE-2.0
  7. # Unless required by applicable law or agreed to in writing, software
  8. # distributed under the License is distributed on an "AS IS" BASIS,
  9. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. # See the License for the specific language governing permissions and
  11. # limitations under the License.
  12. from setuptools import setup
  13. import hgvers
  14. setup(
  15. name = "urllib2_kerberos",
  16. version = hgvers.version,
  17. py_modules = [ 'urllib2_kerberos' ],
  18. # install_requires = ['kerberos'],
  19. author = "Tim Olsen",
  20. author_email = "tolsen@limespot.com",
  21. description = "Kerberos over HTTP Negotiate/SPNEGO support for urllib2",
  22. license = "Apache 2.0",
  23. url = "http://limedav.com/hg/urllib2_kerberos/",
  24. keywords = "urllib2 kerberos http negotiate spnego",
  25. classifiers = [
  26. 'Development Status :: 3 - Alpha',
  27. 'Intended Audience :: Developers',
  28. 'License :: OSI Approved :: Apache Software License',
  29. 'Natural Language :: English',
  30. 'Operating System :: POSIX :: Linux',
  31. 'Programming Language :: Python',
  32. 'Topic :: Internet :: WWW/HTTP',
  33. 'Topic :: Software Development :: Libraries',
  34. 'Topic :: Software Development :: Libraries :: Python Modules',
  35. 'Topic :: System :: Systems Administration :: Authentication/Directory'
  36. ]
  37. )