packaging common python namespaces
I'm looking to package and upload a library I have to PyPI in the next few days, but I'm a little unsure about my approach to the namespace. I have a few otherwise unrelated projects with a similar approach and wanted to give them all the same namespace. For example: Library 1 namespace: abc.seo Library 2 namespace: abc.ajax Library 3 namespace: abc.ecommerce etc The problem is that I'm not sure if it's possible for two separate packages (eg eggs) to co-exist with the same parent namespace. Is this approach problematic, or is there a way around it? What's the best approach? The libraries