2019-06-13 09:09:02 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2019-06-20 04:53:01 -04:00
|
|
|
import os
|
|
|
|
|
2019-06-13 09:09:02 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
2023-05-09 06:05:23 -04:00
|
|
|
setup(name='vsphere-automation-sdk',
|
2023-08-29 01:27:46 -04:00
|
|
|
version='1.86.0',
|
2019-06-13 09:09:02 -04:00
|
|
|
description='VMware vSphere Automation SDK for Python',
|
|
|
|
url='https://github.com/vmware/vsphere-automation-sdk-python',
|
|
|
|
author='VMware, Inc.',
|
|
|
|
license='MIT',
|
2022-04-01 16:26:37 -04:00
|
|
|
packages=[],
|
2019-06-13 09:09:02 -04:00
|
|
|
install_requires=[
|
|
|
|
'lxml >= 4.3.0',
|
2023-04-19 08:24:26 -04:00
|
|
|
'pyVmomi >=6.7',
|
2023-08-29 01:17:05 -04:00
|
|
|
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.44.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
|
|
|
'vcenter-bindings @ file://localhost/{}/lib/vcenter-bindings/vcenter_bindings-4.2.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
|
|
|
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.44.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
2023-08-29 01:27:46 -04:00
|
|
|
'vmwarecloud-aws @ file://localhost/{}/lib/vmwarecloud-aws/vmwarecloud_aws-1.64.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
2023-10-19 00:02:33 -04:00
|
|
|
'nsx-python-sdk @ file://localhost/{}/lib/nsx-python-sdk/nsx_python_sdk-4.1.2.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
|
|
|
'nsx-policy-python-sdk @ file://localhost/{}/lib/nsx-policy-python-sdk/nsx_policy_python_sdk-4.1.2.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
|
|
|
'nsx-vmc-policy-python-sdk @ file://localhost/{}/lib/nsx-vmc-policy-python-sdk/nsx_vmc_policy_python_sdk-4.1.2.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
|
|
|
'nsx-vmc-aws-integration-python-sdk @ file://localhost/{}/lib/nsx-vmc-aws-integration-python-sdk/nsx_vmc_aws_integration_python_sdk-4.1.2.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
2023-08-29 01:07:00 -04:00
|
|
|
'vmwarecloud-draas @ file://localhost/{}/lib/vmwarecloud-draas/vmwarecloud_draas-1.23.0-py2.py3-none-any.whl'.format(os.getcwd()),
|
2019-06-13 09:09:02 -04:00
|
|
|
]
|
2021-12-01 05:39:41 -05:00
|
|
|
)
|