-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 997 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 python
from setuptools import setup, find_packages
setup(
name='chef-ssh',
version='0.1',
description="Chef SSH is a tool to easily query the Chef server's inventory for running scp/ssh to/from the machines",
author='Omri Bahumi',
author_email='[email protected]',
url='https://github.com/omribahumi/chefssh',
packages=find_packages(),
install_requires=['PyChef>=0.2'],
entry_points={
'console_scripts': [
'chef-ssh=chefssh.entry:ssh',
'chef-scp=chefssh.entry:scp'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Clustering',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
]
)