From a94c4d2bde886e2c91b5ba48a0f259faa7069825 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 30 Jun 2008 12:35:56 -0400 Subject: flesh out setup call. install now works --- setup.py | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1c7e974..f8a1fa5 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,32 @@ from setuptools import setup +import version_detect setup( - name = "urllib2_kerberos" - ) + name = "urllib2_kerberos", + version = version_detect.version, + py_modules = [ 'urllib2_kerberos' ], + +# install_requires = ['kerberos'], + + author = "Tim Olsen", + author_email = "tolsen@limespot.com", + description = "Kerberos over HTTP Negotiate/SPNEGO support for urllib2", + license = "GPLv3", + url = "http://limedav.com/hg/urllib2_kerberos/", + keywords = "urllib2 kerberos http negotiate spnego", + classifiers = [ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Natural Language :: English', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: System :: Systems Administration :: Authentication/Directory' + ] + + ) + -- cgit