bork bork bork
Project description
bork
A frontend for building and releasing PEP 517 compliant projects, including support for generating a ZipApp.
Installation
$ pip3 install bork
Usage
Downloading Existing Builds
To download a release from GitHub:
$ bork download gh:duckinator/emanate # download latest .pyz for Emanate
$ bork download gh:duckinator/emanate --directory bin/ # put files in ./bin
$ bork download gh:ppb/pursuedpybear --files '*.tar.gz' # download latest .tar.gz file
To download a wheel from a PyPi release:
$ bork download pypi:emanate 6.0.0 --files '*.whl'
To download a wheel from a release on PyPi's test instance:
$ bork download pypi-test:whaledo 1.0.1 --files '*.whl'
Building and Releasing
Assuming a project is PEP 517 compliant, you can just do:
$ bork clean # Remove anything in build/, dist/, *.egg-info/
$ bork build # Build the project
$ bork release # Release to PyPI
ZipApp Support
If you want to build a ZipApp, add this to your setup.cfg:
[bork]
zipapp_main = <entrypoint>
Where <entrypoint>
is of the form "module.submodule:function", and
will likely be equivalent to the primary console_script
entrypoint
elsewhere in setup.cfg.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/duckinator/bork. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the bork project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
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.