Skip to content

Latest commit

 

History

History
68 lines (53 loc) · 2.38 KB

README.rst

File metadata and controls

68 lines (53 loc) · 2.38 KB
Project generated with PyScaffold

aleph-pytezos

A fork of https://github.com/baking-bad/pytezos/tree/master/src/pytezos/crypto limiting itself to signature verification.

Pytezos is a huge library that provides a lot of functionalities. We only require signature verification in Aleph.im projects for now. This repository contains a fork of pytezos limiting itself to only the bare minimum of our needs.

Install for developers

python -m virtualenv venv
source venv/bin/activate
pip install -e .[testing]

Release a new version

  1. Create a new release on Github.
  2. Make sure your repository is up to date: git checkout main && git pull.
  3. Build the package: tox -e build.
  4. Upload the package: twine upload dist/*.

Note

This project has been set up using PyScaffold 4.2.3. For details and usage information on PyScaffold see https://pyscaffold.org/.