Python 2.7 Package Install With Multiple Modules And Packaged Namespaces
I want to keep multiple python modules in the same repo so it's easier to manage them, and work on them simultaneously. The modules are packaged namespace packages, so I can't hav
Solution 1:
Probably distribute foo.a and foo.b as independent projects alongside a empty foo project that has the other two as install_requires.
The whole setup is described in the Python Packaging User Guide on "Packaging namespace packages".
Post a Comment for "Python 2.7 Package Install With Multiple Modules And Packaged Namespaces"