forked from deshaw/wsgi-kerberos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.6 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""
WSGI-Kerberos
-------------
Provides Kerberos authentication support for WSGI applications
Links
`````
* `documentation <https://wsgi-kerberos.readthedocs.org/en/latest/>`_
* `development version
<http://github.com/mkomitee/wsgi-kerberos/zipball/master#egg=wsgi-kerberos-dev>`_
"""
from setuptools import setup
setup(name='WSGI-Kerberos',
version='1.0.0',
url='http://github.com/mkomitee/wsgi-kerberos',
license='BSD-3-Clause',
author='Michael Komitee',
author_email='[email protected]',
description='Kerberos authentication support in WSGI Middleware',
long_description=__doc__,
py_modules=['wsgi_kerberos'],
zip_safe=False,
include_package_data=True,
package_data={'': ['LICENSE', 'AUTHORS']},
platforms='any',
install_requires=['kerberos < 2'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Python Modules'],
test_suite='test_wsgi_kerberos',
tests_require=['mock', 'WebTest'])