HDFGroup / hdf5-json

Specification and tools for representing HDF5 in JSON
https://hdf5-json.readthedocs.io
Other
72 stars 25 forks source link

Do not install test modules #58

Closed Xarthisius closed 7 years ago

Xarthisius commented 7 years ago

find_packages requires a glob, otherwise it installs submodules:

>>> from setuptools import find_packages
>>> print(find_packages(exclude=['docs', 'test']))
['h5json', 'test.unit', 'test.integ']
>>> print(find_packages(exclude=['docs', 'test*']))
['h5json']