2013-12-13 17:02:41 -05:00
|
|
|
# VMware vSphere Python SDK
|
2014-07-13 03:02:00 -04:00
|
|
|
# Copyright (c) 2009-2014 VMware, Inc. All Rights Reserved.
|
2013-12-13 17:02:41 -05:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
import os
|
|
|
|
|
2014-07-21 18:58:16 -04:00
|
|
|
|
2013-12-13 17:02:41 -05:00
|
|
|
def read(fname):
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
2014-07-21 18:58:16 -04:00
|
|
|
with open('requirements.txt') as f:
|
|
|
|
required = f.read().splitlines()
|
|
|
|
|
|
|
|
with open('test-requirements.txt') as f:
|
|
|
|
required_for_tests = f.read().splitlines()
|
|
|
|
|
2013-12-13 17:02:41 -05:00
|
|
|
setup(
|
|
|
|
name='pyvmomi',
|
2014-08-25 14:04:07 -04:00
|
|
|
version='5.5.0-2014.1.1',
|
2013-12-13 17:02:41 -05:00
|
|
|
description='VMware vSphere Python SDK',
|
|
|
|
author='VMware, Inc.',
|
|
|
|
author_email='jhu@vmware.com',
|
|
|
|
url='https://github.com/vmware/pyvmomi',
|
|
|
|
packages=['pyVmomi', 'pyVim'],
|
2014-07-21 18:58:16 -04:00
|
|
|
install_requires=required,
|
2014-08-25 14:10:01 -04:00
|
|
|
license='License :: OSI Approved :: Apache Software License',
|
2014-08-25 15:23:23 -04:00
|
|
|
data_files = [("", ["LICENSE.txt", "NOTICE.txt", "MANIFEST.in",
|
2014-08-25 17:42:11 -04:00
|
|
|
"setup.py", "tox.ini"])],
|
2014-08-25 14:33:55 -04:00
|
|
|
# NOTE: pypi prefers the use of RST to render docs
|
|
|
|
long_description=read('README.rst'),
|
2013-12-13 17:02:41 -05:00
|
|
|
classifiers=[
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
2014-08-13 14:54:57 -04:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2013-12-13 17:02:41 -05:00
|
|
|
"Environment :: No Input/Output (Daemon)",
|
2014-08-25 14:33:55 -04:00
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
2013-12-13 17:02:41 -05:00
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
2014-08-25 14:33:55 -04:00
|
|
|
"Intended Audience :: Developers",
|
2013-12-13 17:02:41 -05:00
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
2014-08-25 14:33:55 -04:00
|
|
|
"Topic :: System :: Distributed Computing",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Operating System :: MacOS",
|
2013-12-13 17:02:41 -05:00
|
|
|
],
|
2014-08-25 14:33:55 -04:00
|
|
|
platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
|
2014-07-21 18:58:16 -04:00
|
|
|
test_suite='tests',
|
|
|
|
tests_require= required_for_tests,
|
2013-12-13 17:02:41 -05:00
|
|
|
zip_safe=True
|
|
|
|
)
|