Skip to content

Commit

Permalink
Fix find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jennydaman committed Feb 27, 2024
1 parent 76d39c3 commit bea14bb
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
import re

_version_re = re.compile(r"(?<=^__version__ = (\"|'))(.+)(?=\"|')")
Expand All @@ -25,7 +25,7 @@ def get_version(rel_path: str) -> str:
author='FNNDSC',
author_email='[email protected]',
url='https://github.com/FNNDSC/pl-visual-dataset',
packages=['visualdataset'],
packages=find_packages('.', exclude='tests'),
package_data={
'visualdataset': ['colormaps/*']
},
Expand Down

0 comments on commit bea14bb

Please sign in to comment.