2016-12-26 16:42:48 -08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
from zhypervisor import __version__
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='zhypervisor',
|
|
|
|
version=__version__,
|
|
|
|
description='python-based x86 hypervisor using qemu',
|
|
|
|
url='http://gitlab.xmopx.net/dave/zhypervisor',
|
|
|
|
author='dpedu',
|
|
|
|
author_email='dave@davepedu.com',
|
2016-12-26 17:14:28 -08:00
|
|
|
packages=['zhypervisor', 'zhypervisor.clients', 'zhypervisor.api', 'zhypervisor.tools'],
|
2016-12-26 16:42:48 -08:00
|
|
|
entry_points={'console_scripts': ['zd = zhypervisor.daemon:main',
|
|
|
|
'zd_ifup = zhypervisor.tools.ifup:main']},
|
|
|
|
zip_safe=False)
|