Skip to content

Commit

Permalink
MNT: Revert setuptools, to avoid unwanted behavior. (#1356)
Browse files Browse the repository at this point in the history
Need to look into the difference more on find_namespace_packages and
find_packages.
  • Loading branch information
zssherman authored Dec 14, 2022
1 parent d37677c commit fbbcd88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit fbbcd88

Please sign in to comment.