8b5e2a8d66
Everything that should work works. Further improvements that would be nice: - replace untidy multitude of QtGui Items with one generic type - restore Qubes Network functionality - add Boot From Device action (and easy way to install windows tool from there) fixes QubesOS/qubes-issues#2966 QubesOS/qubes-issues#2132
30 lines
1.1 KiB
Python
30 lines
1.1 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'
|
|
],
|
|
})
|