This repository was archived by the owner on Feb 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (39 loc) · 1.24 KB
/
setup.py
File metadata and controls
45 lines (39 loc) · 1.24 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
import os
import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if sys.version_info < (2, 7):
setup_requires_version = ['unittest2']
else:
setup_requires_version = []
setup(
name = "vmw.vco",
version = "0.3.1",
license = "MIT",
package_dir = {'': 'src'},
packages = find_packages('src'),
namespace_packages = ['vmw',],
install_requires = ['vmw.ZSI',
'setuptools',
'zope.interface',
],
extra_requires = {'async': 'Twisted',
'doc': 'sphinx'},
setup_requires = ['jinja2',
] + setup_requires_version,
description = "Python bindings for the VMware Orchestrator",
long_description=read('README'),
author = "VMware, Inc.",
author_email = "yhodique@vmware.com",
url = "http://sigma.github.com/vmw.vco",
keywords = "vmware bindings",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Twisted",
"Intended Audience :: Developers",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
test_suite = 'unittest2.collector'
)