releasecmd is a release subcommand for setup.py (setuptools.setup). the subcommand create a git tag and push, and upload packages to PyPI.
Project description
releasecmd
Summary
releasecmd is a release subcommand for setup.py (setuptools.setup). The subcommand creates a git tag and pushes and uploads packages to PyPI.
The subcommand class (releasecmd.ReleaseCommand) is implemented as a subclass of setuptools.Command class. The release subcommand will do the followings:
Find a file that defined the package version (__version__ variable)
- Create .asc (ASCII-armored signature) files of the package binary files if --sign option is specified
- Create a git tag from the package version information
GPG signing to the git tag if --sign option is specified
Push git tags
- Upload package files to PyPI by using twine
uploading for both the package binaries and .asc files
Installation
pip install releasecmd
Usage
- setup.py:
import setuptools from releasecmd import ReleaseCommand setuptools.setup( ... cmdclass={"release": ReleaseCommand}, )
Example
$ python3 setup.py release
running release
[get the version from ./releasecmd/__version__.py]
[pull git tags]
Already up to date.
[check existing git tags]
[create a git tag: v0.0.15]
[push git tags]
[upload the package to PyPI]
...
prerequisite: package binaries must be in the dist/ directory.
Specify version manually
You can specify a version manually by --version option:
$ python3 setup.py release --version 0.1.0
[create a git tag: v0.1.0]
[pull git tags]
Already up to date.
[check existing git tags]
[push git tags]
[upload packages to PyPI]
Create a GPG signed tag and upload packages
$ python3 setup.py release --sign
running release
[get the version from ./releasecmd/__version__.py]
[create a .asc file for releasecmd-0.1.0.tar.gz]
[create a .asc file for releasecmd-0.1.0-py2.py3-none-any.whl]
[pull git tags]
Already up to date.
[check existing git tags]
[create a git tag with gpg signing: v0.1.0]
[push git tags]
[upload packages to PyPI]
...
Skip create a git tag and upload packages
$ python3 setup.py release --skip-tagging
running release
[get the version from ./releasecmd/__version__.py]
skip git tagging
[upload packages to PyPI]
...
release command options
Options for 'ReleaseCommand' command: --skip-tagging skip a git tag creation --skip-uploading skip uploading packages to PyPI --dry-run do no harm --sign [deprecated from PyPI] make a GPG-signed tag --verbose show verbose output --search-dir specify a root directory path to search a version file. defaults to the current directory. --tag-template specify git tag format. defaults to 'v{version}'. --version specify version manually
Dependencies
Python 3.7+
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file releasecmd-0.9.0.tar.gz
.
File metadata
- Download URL: releasecmd-0.9.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c99421b2a9711741960e37f8698e9a5941858bf40bd2b562f9c0b072e7d20d09 |
|
MD5 | f74967771c4170f755bbd824b7db2d43 |
|
BLAKE2b-256 | a194ae8b73f629bc894f4fad8313b0db20b60f1b027bc4aa2dbd6e814ef41a17 |
File details
Details for the file releasecmd-0.9.0-py3-none-any.whl
.
File metadata
- Download URL: releasecmd-0.9.0-py3-none-any.whl
- Upload date:
- Size: 7.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 690d574b619ee01d86f93ed944ebb8642bd1b4742690c29f3eebdcf3c131514b |
|
MD5 | 7e86335332514def6eb85901d4ed38d1 |
|
BLAKE2b-256 | 26d69a883fe32395c84aa72102b70c1240e5ee5cdd2da9fbd59008a66887ba02 |