forked from acpiper/robotframework-pyspherelibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 908 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
#!/usr/bin/env python
from setuptools import setup
from os.path import abspath, dirname, join
execfile(join(dirname(abspath(__file__)), 'src', 'PysphereLibrary', 'version.py'))
DESCRIPTION = """
Robot Framework test library for VMWare interaction
The library has the following main usages:
- Identifying available virtual machines on a vCenter or
ESXi host
- Starting and stopping VMs
- Shutting down, rebooting VM guest OS
- Checking VM status
- Reverting VMs to a snapshot
- Retrieving basic VM properties
"""[1:-1]
setup(
name='robotframework-pyspherelibrary',
version=VERSION,
description='Robot Framework test library for VMWare Services',
long_description=DESCRIPTION,
license='Apache License 2.0',
keywords='robotframework testing testautomation vmware pysphere',
platforms='any',
package_dir={'': 'src'},
packages=['PysphereLibrary'],
install_requires=['robotframework','pysphere'])