I'm trying to build a package for a django application, but excluding all tests modules. I have tried setting
exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]
on find_packages
and defining a MANIFEST.in
, but the tests are always compiled and included in the bundle.
Any clues?