mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-24 10:58:36 +00:00
12 lines
311 B
Python
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"]
|
||
|
)
|