-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
executable file
·30 lines (29 loc) · 919 Bytes
/
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
#!/usr/bin/env python3
import sys
from setuptools import setup
setup(
name='ssh-ldap-pubkey',
version='1.4.0',
url='https://github.com/jirutka/ssh-ldap-pubkey',
description='Utility to manage SSH public keys stored in LDAP.',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Jakub Jirutka',
author_email='[email protected]',
license='MIT',
packages=['ssh_ldap_pubkey'],
scripts=['bin/ssh-ldap-pubkey', 'bin/ssh-ldap-pubkey-wrapper'],
install_requires=[
'docopt>=0.6.2,<0.7.0',
'python-ldap>=3.0.0,<4'
],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: System',
'Topic :: Utilities'
]
)