From fbbcd88910c18195491d558c74a9fcad92678820 Mon Sep 17 00:00:00 2001 From: Zach Sherman Date: Wed, 14 Dec 2022 12:16:13 -0600 Subject: [PATCH] MNT: Revert setuptools, to avoid unwanted behavior. (#1356) Need to look into the difference more on find_namespace_packages and find_packages. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0de1c8de13..34dc8319a5 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import glob from numpy import get_include -from setuptools import find_namespace_packages, setup, Extension +from setuptools import find_packages, setup, Extension from Cython.Build import cythonize import Cython @@ -240,7 +240,7 @@ def check_rsl_path(rsl_lib_path, rsl_include_path): maintainer=MAINTAINER, maintainer_email=MAINTAINER_EMAIL, url=URL, - packages=find_namespace_packages(include=['pyart'], exclude=['docs']), + packages=find_packages(exclude=['docs']), include_package_data=True, scripts=SCRIPTS, install_requires=requirements,