-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
24 lines (23 loc) · 840 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
from setuptools import setup
setup(
name='chopsticks',
description='Chopsticks is an orchestration library: it lets you manage ' +
'and configure remote hosts over SSH.',
long_description=open('README.rst').read(),
version='1.0',
author='Daniel Pope',
author_email='mauve@mauveweb.co.uk',
url='https://github.com/lordmauve/chopsticks',
packages=['chopsticks'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: POSIX',
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Systems Administration'
]
)