I have a setup.py:
from setuptools import setup
setup(
...
packages=['mypackage'],
test_suite='mypackage.tests',
...
)
python setup.py sdist
creates a file that includes only the source modules from top-level mypackage and not mypackage.tests nor any other submodules.
What am I doing wrong?
Using python 2.7