manager/setup.py
Marta Marczykowska-Górecka ce20377e39
Initial template manager
A working template manager; at the moment it only provides means
to easily change templates of multiple VMs at once, but it should also give tools to install new templates.

fixes QubeSOS/qubes-issues#4085
2018-12-03 18:25:49 +01:00

32 lines
1.2 KiB
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',
'qubes-backup = qubesmanager.backup:main',
'qubes-backup-restore = qubesmanager.restore:main',
'qubes-qube-manager = qubesmanager.qube_manager:main',
'qubes-log-viewer = qubesmanager.log_dialog:main',
'qubes-template-manager = qubesmanager.template_manager:main'
],
})