I'm trying to port an open-source library (SymPy, if anyone is wondering) to Python 3. To do this, I need to run 2to3 automatically when building for Python 3. To do that, I need to use distribute, and to manage that I need to port the system currently used. According to the doctest, currently distutils is used.
Unfortunately, I'm not sure what's the difference between these modules - distutils, distribute, setuptools. The documentation is sketchy as best, as they all seem to be a fork of one another intended to be compatible in most circumstances but actually not all and so on and so forth. Could someone explain me the differences? What am I supposed to use/what is the most modern solution? (as an aside, I'd also appreciate some guide on porting to Distribute, but that's a tad beyond the scope of the question)