smarie / python-pyfields

Define fields in python classes. Easily.
https://smarie.github.io/python-pyfields
BSD 3-Clause "New" or "Revised" License
45 stars 10 forks source link

`tests` folder is not correctly excluded from wheel despite `exclude` in `find_packages` in `setup.py` #65

Closed smarie closed 4 years ago

smarie commented 4 years ago

Our wheel contains the tests:

image

The fix is to use '*tests*'.

See https://setuptools.readthedocs.io/en/latest/setuptools.html#using-find-packages for reference.