Add setup.py and related files
This commit is contained in:
parent
3a2e0b770b
commit
1fc6cceb73
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
*.pyc
|
||||
*.pyo
|
||||
build/
|
||||
|
15
setup.py
Normal file
15
setup.py
Normal file
@ -0,0 +1,15 @@
|
||||
# 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(),
|
||||
)
|
Loading…
Reference in New Issue
Block a user