ImportError: No module... After python setup.py install
The problem was in find_packages()
:
Some projects use a src or lib directory as the root of their source tree, and those projects would of course use "src" or "lib" as the first argument to
find_packages()
.
Hence, I had to change find_packages('myproject')
to find_packages('src')
.