summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg37
1 files changed, 37 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..53273e9
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,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