forked from siemens/jailhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 723 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# pyjailhouse, a python interface for the Jailhouse hypervisor
#
# Copyright (c) Christopher Goldsworthy, 2018
#
# This script is used to create project metadata when installing pyjailhouse
# using pip.
#
# This work is licensed under the terms of the GNU GPL, version 2. See
# the COPYING file in the top-level directory.
#
from setuptools import setup, find_packages
with open("VERSION") as version_file:
version = version_file.read().lstrip("v")
setup(name="pyjailhouse", version=version,
description="A Python interface for the Jailhouse Hypervisor",
license="GPLv2", url="https://github.com/siemens/jailhouse",
author_email="jailhouse-dev@googlegroups.com",
packages=find_packages())