2016-09-12 05:22:53 +02:00
|
|
|
# vim: fileencoding=utf-8
|
|
|
|
|
|
|
|
import setuptools
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
setuptools.setup(
|
|
|
|
name='qubesagent',
|
|
|
|
version=open('version').read().strip(),
|
|
|
|
author='Invisible Things Lab',
|
|
|
|
author_email='marmarek@invisiblethingslab.com',
|
|
|
|
description='Qubes core-agent-linux package',
|
|
|
|
license='GPL2+',
|
|
|
|
url='https://www.qubes-os.org/',
|
|
|
|
|
|
|
|
packages=('qubesagent',),
|
|
|
|
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2020-01-23 13:31:19 +01:00
|
|
|
'qubes-firewall = qubesagent.firewall:main',
|
|
|
|
'qubes-vmexec = qubesagent.vmexec:main',
|
2016-09-12 05:22:53 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|