1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# electrum-ecc
```
Licence: MIT Licence
Author: The Electrum developers
Language: Python (>= 3.10)
```
[](https://pypi.org/project/electrum-ecc/)
[](https://cirrus-ci.com/github/spesmilo/electrum-ecc)
This package provides a pure python interface to
[libsecp256k1](https://github.com/bitcoin-core/secp256k1).
Unlike Coincurve, it uses ctypes, and has no dependency.
### Tests
```
$ python3 -m unittest discover -s tests -t .
```
Or
```
$ pytest tests -v
```
### Maintainer notes
Release checklist:
- bump `__version__` in `__init__.py`
- write changelog?
- `$ git tag -s "$VERSION" -m "$VERSION"`
- `$ git push "$REMOTE_ORIGIN" tag "$VERSION"`
- build sdist (see [`contrib/sdist/`](contrib/sdist)):
- `$ ELECBUILD_COMMIT=HEAD ELECBUILD_NOCACHE=1 ./contrib/sdist/build.sh`
- `$ python3 -m twine upload dist/$DISTNAME`
|