How to Change dependency paths and deploy to different directory structure than developing in?
I have a the following structure in my source directory
\ABCE
\ABCE\lib
\ABCE\lib\modulA.py
\ABCE\lib\modulA.py
if I now package with python setup.py sdist
i need to call the module with:
import lib.moduleA
import lib.moduleB
how can I avoid lib. but maintain my directory structure? So that I import with
import moduleA
import moduleB
List
libin thepackages_diroption:From the
distutils“Writing a Setup Script” documentation: