mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-22 18:05:10 +00:00
Our previous mailing list had some technical issues and we created a new one that is hopefully more reliable. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
22 lines
436 B
TOML
22 lines
436 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "crit"
|
|
description = "CRiu Image Tool"
|
|
authors = [
|
|
{name = "CRIU team", email = "criu@lists.linux.dev"},
|
|
]
|
|
license = {text = "GPLv2"}
|
|
dynamic = ["version"]
|
|
requires-python = ">=3.6"
|
|
|
|
[project.scripts]
|
|
crit = "crit.__main__:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["crit"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "crit.__version__"}
|