From d85d0588125f418fc2413c9b6dcde929a8b617fa Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Sat, 17 Sep 2022 11:28:13 -0400 Subject: [PATCH] setup.py: include rpmlint.descriptions in packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since setuptools-62.3.0¹, a warning is issued when setuptools finds an importable package is listed in package_data rather than in packages. ¹ https://github.com/pypa/setuptools/pull/3308 https://setuptools.pypa.io/en/latest/history.html#v62-3-0 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1032cea38..162324385 100755 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ packages=[ 'rpmlint', 'rpmlint.checks', + 'rpmlint.descriptions', ], package_data={ 'rpmlint': ['configdefaults.toml'],