Download cheeseshop different versions of the package for different versions of Python

I have an open source Python project (called GarlicSim) and I support 4 different versions for Python versions 2.4, 2.5, 2.6 and 3.1. Yes, it may be unusual, but I like to use as many features as possible. I save them in 4 different repository forks.

Now I want to upload my project to cheeseshop. How to do it? I expect the user to automatically get the version of GarlicSim suitable for his version of Python. How to do it?

+5
source share
1 answer
python2.4 setup.py bdist_egg upload
python2.5 setup.py bdist_egg upload
python2.6 setup.py bdist_egg upload
python3.1 setup.py bdist_egg upload
+3
source

All Articles