blob: 53273e9ee89ffde8f66607b3fbc0e5d86e5d6c08 (
plain)
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
|
[metadata]
name = python-vmmsclient
summary = Client library for VM Migration Scheduler API
description-file = README.rst
author = OpenStack
author-email = openstack-discuss@lists.openstack.org
home-page = https://www.openstack.org/
classifier =
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[files]
packages =
vmmsclient
[entry_points]
openstack.cli.extension =
vmms = vmmsclient.plugin
openstack.vmms.v2 =
vmms_vm_add = vmmsclient.v2.client:AddVMCommand
vmms_vm_list = vmmsclient.v2.client:ListVMsCommand
vmms_vm_remove = vmmsclient.v2.client:RemoveVMCommand
vmms_vm_show = vmmsclient.v2.client:ShowVMCommand
vmms_vm_set = vmmsclient.v2.client:SetVMCommand
vmms_vm_unset = vmmsclient.v2.client:UnsetVMCommand
vmms_vm_output = vmmsclient.v2.client:ShowVMOutputCommand
|