Closed Xarthisius closed 7 years ago
find_packages requires a glob, otherwise it installs submodules:
find_packages
>>> from setuptools import find_packages >>> print(find_packages(exclude=['docs', 'test'])) ['h5json', 'test.unit', 'test.integ'] >>> print(find_packages(exclude=['docs', 'test*'])) ['h5json']
find_packages
requires a glob, otherwise it installs submodules: