From 1d03124405082a8293795ca896e2eeb22bbce906 Mon Sep 17 00:00:00 2001 From: panwentao Date: Mon, 19 Feb 2024 15:31:29 +0800 Subject: [PATCH] setup: Add kconfiglib dependency package * Add kconfiglib dependency package Signed-off-by: panwentao --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d1a17d5..4248684 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ with open('README.md', 'r', encoding="utf-8") as f: with open('src/oebuild/version.py', 'r', encoding="utf-8") as f: __version__ = None + # pylint: disable=W0122 exec(f.read()) assert __version__ is not None @@ -55,7 +56,8 @@ setuptools.setup( 'ruamel.yaml', 'dataclasses', 'reprint', - 'prettytable' + 'prettytable', + 'kconfiglib' ], python_requires='>=3.8', entry_points={'console_scripts': ('oebuild = oebuild.app.main:main',)}, -- Gitee