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 create a git tag and push, and upload 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 (e.g. <package>/__init__.py)
Create .asc 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
release command options
Options for 'ReleaseCommand' command: --skip-tagging skip a git tag creation --dry-run do no harm --sign make a GPG-signed tag --tag-template specify git tag format. defaults to 'v{version}'. --version specify version manually
Example
$ python setup.py release
running release
[get the version from ./releasecmd/__version__.py]
[create a git tag: v0.0.15]
[push git tags]
[upload the package to PyPI]
...
prerequisite: package binaries must bein in the dist/ directory.
Specify version manually
You can specify a vesion manually by --version option:
$ python setup.py release --version 0.1.0
[create a git tag: v0.1.0]
[push git tags]
[upload packages to PyPI]
Create a GPG signed tag and upload packages
$ python 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]
[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
$ python setup.py release --skip-tagging
running release
[get the version from ./releasecmd/__version__.py]
[push git tags]
[upload packages to PyPI]
...
Dependencies
Python 3.5+
git
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.3.3.tar.gz
.
File metadata
- Download URL: releasecmd-0.3.3.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 042026878d6000c57df7e6e6c443fa568e446115762e2202b6872f9a88d16086 |
|
MD5 | a9639dd716e76fbeb3344e097bcbb9d3 |
|
BLAKE2b-256 | 47604a2287be65c450f2afe47d56f54f8c2829f941fbc93ebf6e917f1ffb3283 |
File details
Details for the file releasecmd-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: releasecmd-0.3.3-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e89492d6dd6e9c2c215501eb703e93fe4ae7e695f78dea12ded8f4ded940379d |
|
MD5 | 3a795fa313548f7fbb69d1b08d4fe2f5 |
|
BLAKE2b-256 | 8aacedd8d21f3f8ce18ab11b51387eafb9d239c922592da7a0fb96872de9e9c5 |