-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 862 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
31
32
33
from setuptools import setup
from sshm._info import __version__, __long_description__
config = {
'name':'sshm',
'version':__version__,
'author':'rolobio',
'author_email':'[email protected]',
'description':'SSH into multiple hosts.',
'license':'GNU GPL',
'keywords':'ssh multiple',
'url':'https://github.com/rolobio/sshm',
'packages':[
'sshm',
],
'long_description':__long_description__,
'install_requires': [
'pyzmq',
],
'classifiers':[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License (GPL)"
],
'test_suite':'sshm.test.suite',
'entry_points':{
'console_scripts': [
'sshm = sshm.main:main'
]
},
}
setup(**config)