From 0264077198964f838c6e71b65f8e19966f2acdfa Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Tue, 23 Aug 2022 04:10:25 -0400 Subject: [PATCH] MAINT: Add tests as submodule (#2477) --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4ce0ac2a69..8a6c8c7349 100755 --- a/setup.py +++ b/setup.py @@ -46,15 +46,13 @@ python_requires='>=3.6', packages=[ 'codespell_lib', + 'codespell_lib.tests', 'codespell_lib.data', ], package_data={'codespell_lib': [ os.path.join('data', 'dictionary*.txt'), os.path.join('data', 'linux-kernel.exclude'), ]}, - exclude_package_data={'codespell_lib': [ - os.path.join('tests', '*'), - ]}, entry_points={ 'console_scripts': [ 'codespell = codespell_lib:_script_main'