From 199b295d778c0f5ccf84fd2de904db4816b111f7 Mon Sep 17 00:00:00 2001 From: James Molet Date: Fri, 13 Dec 2024 15:03:47 -0500 Subject: [PATCH] putting this project into a package --- hypervisor/virt/ahv/__init__.py | 0 setup.py | 12 ++++++++++++ 2 files changed, 12 insertions(+) create mode 100644 hypervisor/virt/ahv/__init__.py create mode 100644 setup.py diff --git a/hypervisor/virt/ahv/__init__.py b/hypervisor/virt/ahv/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d6cff00 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup( + name='hypervisor-builder', + version='0.1', + packages=['hypervisor', 'hypervisor.virt', 'hypervisor.virt.ahv', 'hypervisor.virt.esx', 'hypervisor.virt.xen', 'hypervisor.virt.rhevm', 'hypervisor.virt.hyperv', 'hypervisor.virt.libvirt', 'hypervisor.virt.kubevirt'], + url='https://github.com/VirtwhoQE/hypervisor-builder', + license='GPL-3.0', + author='', + author_email='', + description='Library to set up various hypervisors for virt-who testing.' +)