-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
35 lines (32 loc) · 895 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
34
35
from __future__ import print_function
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='jashby2@gmail.com',
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.19",
"pyvmomi==6.7.0.2018.9",
"PyYAML==5.4",
"requests==2.20.0",
"six==1.11.0",
"wheel==0.38.1",
],
)