
Move openstack-projects part from python2 to python3. Add cloud archive. Update qemu and libvirt versions to those from cloud archive (they work with python3, while the distro packages versions don't). Switch from rocky to stein. Fetch libvirt and qemu sources via "apt source". Gets rid of sub version hard coding in snapcraft. Update hard coded references in tests to rocky from stein. Change-Id: Idb38717998a13feaaf0782e880e540f28bc452a8
14 lines
335 B
Python
14 lines
335 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="microstack_init",
|
|
description="Optionally interactive init script for Microstack.",
|
|
packages=find_packages(exclude=("tests",)),
|
|
version="0.0.1",
|
|
entry_points={
|
|
'console_scripts': [
|
|
'microstack_init = init.main:main',
|
|
],
|
|
},
|
|
)
|