-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
48 lines (42 loc) · 1.24 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
41
42
43
44
45
46
47
48
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'requests',
'argparse',
'argcomplete',
'pyyaml',
'prettytable',
'cryptography',
'ansible==1.9.3',
'HTMLParser',
'netaddr'
]
def readme():
with open('README.md') as f:
return f.read()
setup(
name='mist',
version='1.10',
description='Python client for mist.io',
long_description=readme(),
classifiers=[
"Programming Language :: Python",
"Framework :: Pylons",
"Topic :: Internet :: WWW/HTTP",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
url='https://github.com/mistio/mist.client',
keywords='web cloud server management monitoring automation mobile libcloud pyramid amazon aws rackspace openstack linode softlayer digitalocean gce',
author='Chris Loukas',
author_email='[email protected]',
license='GPLv3',
packages=find_packages('src'),
scripts=['src/mistcommand/mist',
'src/mistansible/mistplay'],
package_dir={'': 'src'},
install_requires=requires,
zip_safe=False,
include_package_data=True
)