I have a number of python packages in GitHub repositories and it would be really great to have these available in PyPi. I know I could do these releases manually (update the version number, perhaps update a changelog, tag the release in GitHub, get the download url from GitHub, update PyPi with the release etc.) but I keep thinking that there must be a script/utility somewhere to make this a single-command process.
I am not massively familiar with the python packaging process, so perhaps I am coming at this from the wrong angle. I just don't think I can be the first one to have the idea of making this whole process a lot easier.
Edit: As there seems to be some confusion about what I am asking for: Are there any tools that make releasing Python packages to PyPi a faster and more streamlined process?
I have tried searching around but have yet to find anything.
setup.pyhandles most of this. What part of the standard documentation is confusing? docs.python.org/distutils/uploading.html seems clear. Can you be specific on what part of this is confusing? – S.Lott Feb 10 at 12:04setup.pydoes handle a lot of this, but it seems that there are a number of common steps thatsetup.pydoesn't cover (eg: version bump, updating the change log). I just thought that, as this is such a common process, that there may be a utility for wrapping everything up in one command (e.g. updating the package's version, pulling changelog from git, then pushing changes back and updating PyPi). – Adam Charnock Feb 10 at 12:43