f4d6ac2880
This result only in small limitation in qvm-start-gui tool, but allow to use the tools from Debian jessie based VM (python 3.4.2).
33 lines
989 B
Python
33 lines
989 B
Python
# vim: fileencoding=utf-8
|
|
|
|
import setuptools
|
|
import sys
|
|
|
|
exclude=[]
|
|
if sys.version_info[0:2] < (3, 4):
|
|
exclude += ['qubesadmin.tools', 'qubesadmin.tests.tools']
|
|
if sys.version_info[0:2] < (3, 5):
|
|
exclude += ['qubesadmin.events']
|
|
|
|
if __name__ == '__main__':
|
|
setuptools.setup(
|
|
name='qubesadmin',
|
|
version=open('version').read().strip(),
|
|
author='Invisible Things Lab',
|
|
author_email='marmarek@invisiblethingslab.com',
|
|
description='Qubes Admin API package',
|
|
license='LGPL2.1+',
|
|
url='https://www.qubes-os.org/',
|
|
packages=setuptools.find_packages(exclude=exclude),
|
|
entry_points={
|
|
'qubesadmin.vm': [
|
|
'AppVM = qubesadmin.vm:AppVM',
|
|
'TemplateVM = qubesadmin.vm:TemplateVM',
|
|
'StandaloneVM = qubesadmin.vm:StandaloneVM',
|
|
'AdminVM = qubesadmin.vm:AdminVM',
|
|
'DispVM = qubesadmin.vm:DispVM',
|
|
],
|
|
},
|
|
|
|
)
|