mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 18:25:14 +00:00
pycriu depends on protobuf to function correctly. Currently, it raises an error if protobuf is not installed. Adding protobuf to the dependencies ensures it is available after installing pycriu. Signed-off-by: Andrii Herheliuk <andrii@herheliuk.com>
20 lines
468 B
TOML
20 lines
468 B
TOML
[build-system]
|
|
requires = ["setuptools", "protobuf<4.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pycriu"
|
|
description = "Python bindings for CRIU"
|
|
authors = [
|
|
{name = "CRIU team", email = "criu@lists.linux.dev"},
|
|
]
|
|
license = {text = "LGPLv2.1"}
|
|
dynamic = ["version"]
|
|
requires-python = ">=3.6"
|
|
dependencies = ["protobuf"]
|
|
|
|
[tool.setuptools]
|
|
packages = ["pycriu", "pycriu.images"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "pycriu.__version__"}
|