-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (41 loc) · 1.33 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='gssapi_console',
version='1.0.0',
author='The Python GSSAPI Team',
author_email='[email protected]',
packages=['gssapi_console'],
scripts=['gssapi-console.py'],
description='An interactive tool for testing Python GSSAPI programs',
long_description=open('README.md').read(),
license='LICENSE.txt',
url="https://github.com/pythongssapi/python-gssapi",
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Security',
],
keywords=['gssapi', 'security'],
entry_points={
'gssapi_console.drivers': [
'krb5 = gssapi_console.drivers:Krb5Console',
],
'yalpt.env_drivers': [
'gssapi = gssapi_console.yalpt_driver:GSSAPIYalptDriver',
],
},
install_requires=[
'gssapi',
'k5test',
'six'
]
)