From d2413cb629bd20241cf14cf0d4129772e53f4250 Mon Sep 17 00:00:00 2001 From: Jennings Zhang Date: Fri, 17 Feb 2023 08:51:27 -0500 Subject: [PATCH] Fix find_packages --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b42b686..1659a07 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages setup( name='extract_cp', @@ -7,7 +7,7 @@ author='Jennings Zhang', author_email='Jennings.Zhang@childrens.harvard.edu', url='https://github.com/FNNDSC/pl-fetal-cp-surface-extract', - packages=['extract_cp'], + packages=find_packages(exclude=['tests']), install_requires=['chris_plugin', 'loguru', 'pycivet', 'pybicpl', 'numpy'], license='MIT', entry_points={