-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.05 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='sm',
version='0.1.8',
keywords=('ssh', 'manager'),
url='https://github.com/mymonkey110/ssh-manager',
description="ssh host command manager tool",
long_description=readme(),
license='MIT License',
install_requires=['pexpect', 'ptyprocess', 'tabulate'],
author='Michael Jiang',
author_email='[email protected]',
maintainer='Michael Jiang',
maintainer_email='[email protected]',
packages=['sm'],
package_data={
'sm': ["config.schema"]
},
platform=('Linux', 'Mac'),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration',
],
entry_points={
'console_scripts': [
'sm = sm.main:main',
]
}
)