forked from snobear/ezmomi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 848 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
31
32
33
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
exec(open('ezmomi/version.py').read())
except:
print "Unable to import ezmomi/version.py. Exiting."
sys.exit(1)
setup(
name='ezmomi',
version=__version__,
author='Jason Ashby',
author_email='[email protected]',
packages=['ezmomi'],
package_dir={'ezmomi': 'ezmomi'},
package_data={'ezmomi': ['config/config.yml.example']},
scripts=['bin/ezmomi'],
url='https://github.com/snobear/ezmomi',
license='LICENSE.txt',
description='VMware vSphere Command line tool',
long_description=open('README.txt').read(),
install_requires=[
"netaddr==0.7.18",
"pyvmomi==6.0.0",
"PyYAML==3.11",
"requests==2.8.1",
"six==1.10.0",
"wheel==0.26.0",
],
)