Add setup.py and related files

このコミットが含まれているのは:
Marek Marczykowski-Górecki 2017-02-24 00:21:02 +01:00
コミット 1fc6cceb73
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 063938BA42CFA724
3個のファイルの変更17行の追加0行の削除

1
.gitignore vendored
ファイルの表示

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

15
setup.py ノーマルファイル
ファイルの表示

@ -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 ノーマルファイル
ファイルの表示

@ -0,0 +1 @@
4.0.0