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>
This commit is contained in:
Ruslan Kuprieiev 2014-12-31 14:06:51 +02:00 committed by Pavel Emelyanov
parent 9d169c550b
commit def0f49177

11
scripts/crit-setup.py Normal file
View file

@ -0,0 +1,11 @@
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"]
)