-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.05 KB
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
try:
from setuptools import setup
except ImportError as excp:
from distutils.core import setup
import vmrun
setup( name = 'vmrun',
version = vmrun.__version__,
description = 'Control Vmware from Python. Used the vmrun.exe',
author = 'Binjo',
author_email = 'binjo.cn@gmail.com',
url = 'http://github.com/binjo/vmrun-python.git',
download_url = '',
license = 'GNU GPL v2',
keywords = 'vmrun vmware python',
platforms = ['any'],
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU GPL v2',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: VMWare',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description = "\n".join(vmrun.__doc__.split('\n')),
py_modules = ['vmrun'],
install_requires = ['setuptools'],
data_files = [('.', ['README'])] )