How to organize Python modules for PyPI to support 2.x and 3.x
- by Craig McQueen
I have a Python module that I would like to upload to PyPI. So far, it is working for Python 2.x. It shouldn't be too hard to write a version for 3.x now.
But, after following guidelines for making modules in these places:
Distributing Python Modules
The Hitchhiker’s Guide to Packaging
it's not clear to me how to support multiple source…