diff --git a/setup.py b/setup.py index d1a17d52b4efa43dbc6a7f6c109a5a6eea560726..4248684d81d4f02d8190588dfba970da6d696a4e 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',)},