2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 18:07:57 +00:00
criu/scripts/crit-setup.py
Ruslan Kuprieiev def0f49177 crit: add scripts/crit-setup.py
This is a small python scipt that uses distutils to install crit script
and pycriu package.

Signed-off-by: Ruslan Kuprieiev <kupruser@gmail.com>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2015-01-14 20:44:48 +04:00

12 lines
311 B
Python

from distutils.core import setup
setup(name = "crit",
version = "0.0.1",
description = "CRiu Image Tool",
author = "CRIU team",
author_email = "criu@openvz.org",
url = "https://github.com/xemul/criu",
packages = ["pycriu", "pycriu.images"],
scripts = ["crit"]
)