A cli for publishing packages to pypi, without the hassle
Project description
version number: 0.0.3 author: Will McGinnis
Overview
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).
Installation / Usage
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 publish [-options]
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
### Updating .pypi file
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
### Linting the candidate repository
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.
### Pushing a tag to git
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.
### Publishing the repository
Currently, this only supports sdist uploads, in the future we plan to add more sophisticated packaging functionality, like wheels.
Contributing
If you run into trouble, please let me know, open an issue or shoot me a pull request.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pypi-publisher-0.0.3.tar.gz
.
File metadata
- Download URL: pypi-publisher-0.0.3.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bc640966bed481bcb3df329e273b355b86e3ff268fe1baaaaa76b0bc22960c0 |
|
MD5 | 8e6d7bc93aeffb9506ab46856030da6a |
|
BLAKE2b-256 | 2d79eb0fdd817aa4b852a818418ae63b27c2522be478adc4902aa2e8c41d98e7 |