16 lines
434 B
Python
16 lines
434 B
Python
|
# vim: fileencoding=utf-8
|
||
|
|
||
|
import setuptools
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
setuptools.setup(
|
||
|
name='qubesmgmt',
|
||
|
version=open('version').read().strip(),
|
||
|
author='Invisible Things Lab',
|
||
|
author_email='marmarek@invisiblethingslab.com',
|
||
|
description='Qubes mgmt API package',
|
||
|
license='LGPL2.1+',
|
||
|
url='https://www.qubes-os.org/',
|
||
|
packages=setuptools.find_packages(),
|
||
|
)
|