Skip to content

Commit

Permalink
Fix find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennings Zhang authored and Jennings Zhang committed Feb 17, 2023
1 parent ddbcc9b commit d2413cb
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
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

setup(
name='extract_cp',
Expand All @@ -7,7 +7,7 @@
author='Jennings Zhang',
author_email='[email protected]',
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={
Expand Down

0 comments on commit d2413cb

Please sign in to comment.