From 5ad60b0cbd0a396eb3f1fda6bbf2c95aff6d5ecf Mon Sep 17 00:00:00 2001 From: Hu Dong Date: Fri, 3 May 2024 01:50:25 +0800 Subject: [PATCH] [Misc] Exclude the `tests` directory from being packaged (#4552) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d534cec4..801d8d50 100644 --- a/setup.py +++ b/setup.py @@ -404,7 +404,7 @@ setup( "Topic :: Scientific/Engineering :: Artificial Intelligence", ], packages=find_packages(exclude=("benchmarks", "csrc", "docs", "examples", - "tests")), + "tests*")), python_requires=">=3.8", install_requires=get_requirements(), ext_modules=ext_modules,