Re: [PATCH v3 2/4] tools: ynl: add initial pyproject.toml for packaging
From: Donald Hunter
Date: Mon Dec 16 2024 - 09:11:23 EST
Jan Stancek <jstancek@xxxxxxxxxx> writes:
> Signed-off-by: Jan Stancek <jstancek@xxxxxxxxxx>
nit: missing patch description
> ---
> tools/net/ynl/pyproject.toml | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
> create mode 100644 tools/net/ynl/pyproject.toml
>
> diff --git a/tools/net/ynl/pyproject.toml b/tools/net/ynl/pyproject.toml
> new file mode 100644
> index 000000000000..677ea8f4c185
> --- /dev/null
> +++ b/tools/net/ynl/pyproject.toml
> @@ -0,0 +1,26 @@
> +[build-system]
> +requires = ["setuptools>=61.0"]
> +build-backend = "setuptools.build_meta"
> +
> +[project]
> +name = "pyynl"
> +authors = [
> + {name = "Donald Hunter", email = "donald.hunter@xxxxxxxxx"},
> + {name = "Jakub Kicinski", email = "kuba@xxxxxxxxxx"},
> +]
> +description = "yaml netlink (ynl)"
> +version = "0.0.1"
> +requires-python = ">=3.9"
> +dependencies = [
> + "pyyaml==6.*",
> + "jsonschema==4.*"
> +]
> +
> +[tool.setuptools.packages.find]
> +include = ["pyynl", "pyynl.lib"]
> +
> +[project.scripts]
> +ynl = "pyynl.cli:main"
> +ynl-ethtool = "pyynl.ethtool:main"
> +ynl-gen-c = "pyynl.ynl_gen_c:main"
> +ynl-gen-rst = "pyynl.ynl_gen_rst:main"
I'm not sure if we want to install ynl-gen-c or ynl-gen-rst since they
are for in-tree use.
Thoughts?