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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
Metadata-Version: 2.4
Name: electrum-ecc
Version: 0.0.6
Summary: Pure python ctypes wrapper for libsecp256k1
Author: The Electrum developers
License-Expression: MIT
Project-URL: Homepage, https://github.com/spesmilo/electrum-ecc
Project-URL: Repository, https://github.com/spesmilo/electrum-ecc
Keywords: libsecp256k1,ecc
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Security :: Cryptography
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file
# 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`
|