aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <tolsen@limebits.com>2008-06-30 12:35:56 -0400
committerUnknown <tolsen@limebits.com>2008-06-30 12:35:56 -0400
commita94c4d2bde886e2c91b5ba48a0f259faa7069825 (patch)
tree473a6af4fe39df133ad41338065d0b7056f53fbd
parent5300dd1cb3da6b29608900f4ab3e0928f0d5f37f (diff)
downloadurllib2_kerberos-a94c4d2bde886e2c91b5ba48a0f259faa7069825.tar.gz
flesh out setup call. install now works
-rw-r--r--setup.py30
1 files changed, 28 insertions, 2 deletions
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'
+ ]
+
+ )
+