manager/setup.py
Marta Marczykowska-Górecka 2ac9b1d182
Added gui for booting VM from CDROM/block device.
Available via command line (qubes-vm-boot-from-device) and
from a button in VM Settings/Advanced.
2017-09-13 23:30:45 +02:00

27 lines
883 B
Python

#!/usr/bin/python3 -O
# vim: fileencoding=utf-8
import setuptools
if __name__ == '__main__':
setuptools.setup(
name='qubesmanager',
version=open('version').read().strip(),
author='Invisible Things Lab',
author_email='qubes-devel@googlegroups.com',
description='Qubes OS Manager',
license='GPL2+',
url='https://www.qubes-os.org/',
packages=setuptools.find_packages(),
package_data={
'qubesmanager': ['i18n/*']
},
entry_points={
'console_scripts': [
'qubes-global-settings = qubesmanager.global_settings:main',
'qubes-vm-settings = qubesmanager.settings:main',
'qubes-vm-create = qubesmanager.create_new_vm:main',
'qubes-vm-boot-from-device = qubesmanager.bootfromdevice:main'
],
})