-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 802 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
from distutils.core import setup
import sys
import mcollective
setup(name='mcollective',
version=mcollective.__version__,
author='Aaron Brady',
author_email='[email protected]',
url='https://github.com/insom/mcollective-python',
description="Python library for using Marionette Collective's RPC",
#long_description=mcollective.__doc__,
py_modules=['mcollective',],
provides=['mcollective',],
requires=['M2Crypto',],
keywords='mcollective',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
],
)