Add setup.py and related files

This commit is contained in:
Marek Marczykowski-Górecki 2017-02-24 00:21:02 +01:00
parent 3a2e0b770b
commit 1fc6cceb73
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.pyc
*.pyo
build/

15
setup.py Normal file
View 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(),
)

1
version Normal file
View File

@ -0,0 +1 @@
4.0.0