aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknown <tolsen@limebits.com>2008-06-30 12:35:56 -0400
committerMatěj Cepl <mcepl@cepl.eu>2023-04-29 18:18:50 +0200
commit94f20494c219e4e15a3c546e9f316cd8ed1e5152 (patch)
tree2b4baf03704ca644caad4c04abc5064ef5af0b13
parent01fe2090b6f91d9178b61782a65ea0bfc673ba29 (diff)
downloadurllib2_kerberos-94f20494c219e4e15a3c546e9f316cd8ed1e5152.tar.gz
flesh out setup call. install now works
-rw-r--r--setup.py28
1 files changed, 27 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b9dbdb9..0a84aa2 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,31 @@
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'
+ ]
+
)