author: Will McGinnis
A cli for publishing packages to pypi, without the hassle. It just lets you in one command line call upsert into your .pypirc file (or reference a server already in it, or create a new file altogether if it doesn't exist), create the git tag for the version specified in your setup.py file, lint the directory to make sure the required files are there, then register and push it all up.
Super easy.
In the future, we aim to add in more complex linting / last minute checks and aim to remove the need for a pypirc file in the first place (perhaps by creating it on the the fly with the passed args and removing it, or by mocking it).
To install use pip:
$ pip install pypi-publisher
Or clone the repo:
$ git clone https://github.com/wdm0006/pypi-publisher.git
$ python setup.py install
Then to use just:
$ ppp [command] [-options]
Available commands are:
- publish
- tag
- list-servers
Available options are:
- -u/--username
- -p/--password
- -i/--index-url
- -s/--server-name
- -d/--dry-run
- -v/--verbose
- -t/--create-tag
In general, the 4 things being done are:
- update the .pypi file
- linting the candidate repository
- pushing a tag to git for the release
- publishing the repository to a pypi server
If you already have a .pypi file at ~ on the box, then you can just pass -s to reference a server in that. If you pass -s and -u, -p, and/or -i for a server that is in the file already, the parameters passed will be upserted into that file. If you pass -s, -u, -p, and -i for a server that is not in the file, it will be inserted as a new server.
A few examples:
To use an existing server
ppp publish -s=foo
To update some values (username and index url) for an existing server
ppp publish -s=foo -u=bar -i=baz
To create a whole new server:
ppp publish -s=foo -u=bar -p=baz -i=bat
Currently, the linting is very basic, and is just checking that a few files actually exist (manifest.in, setup.py and setup.cfg). This happens in all runs, regardless of flags passed.
If you pass the -t flag, ppp will try to find the version number in the setup.py file and push a tag with the version to git. The search looks for any line (case insensitive) that starts with version or version, and takes it's value, so
__version__ = '1.0.0'
or
VERSION = '1.0.0'
Would both work perfectly. It's worth noting that if you push tags on the initial publishing to a test server, you won't need to push the same tag again for the following publishing to the prod server.
Currently, this only supports sdist uploads, in the future we plan to add more sophisticated packaging functionality, like wheels.
If you run into trouble, please let me know, open an issue or shoot me a pull request.