This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
57 lines (51 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import mixcoatl
import os
import glob
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'mixcoatl',
'mixcoatl.admin',
'mixcoatl.analytics',
'mixcoatl.automation',
'mixcoatl.config',
'mixcoatl.decorators',
'mixcoatl.exceptions',
'mixcoatl.geography',
'mixcoatl.infrastructure',
'mixcoatl.network',
'mixcoatl.platform',
'mixcoatl.settings'
]
requires = ['requests>=1.0.4', 'prettytable>=0.7.2', 'xmltodict>=0.4.2']
if sys.version_info < (2, 7):
requires.append('argparse')
setup(
name='mixcoatl',
version=mixcoatl.__version__,
description='Dell Cloud Manager API Python wrapper',
long_description='Dell Cloud Manager API Python wrapper',
author='Dell Cloud Management Team',
author_email='[email protected]',
url='https://github.com/enStratus/mixcoatl',
packages=packages,
package_data={'': ['LICENSE', 'README.rst', 'requirements.txt']},
package_dir={'mixcoatl': 'mixcoatl'},
include_package_data=True,
install_requires=requires,
scripts=glob.glob(os.path.join('bin','*')),
license='Apache 2.0',
zip_safe=False,
classifiers=(
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
),
)