forked from rapid7/vm-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 1.02 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
from setuptools import setup
setup(name='vm_automation',
version='0.1.1',
description='Virtual infrastructure automation simplified interaction library',
url='http://github.com/rapid7/vm-automation',
author='Metasploit Hackers',
author_email='metasploit-hackers@lists.sourceforge.net',
license=open("LICENSE").read(),
packages=['vm_automation'],
install_requires=[
'pyVmomi',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Programming Language :: Python :: 2.7',
],
platforms=['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
keywords='vsphere vmware esx',
zip_safe=True)