-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
110266e
commit 7416612
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
# btclib_libsecp256k1 | ||
Simple python bindings to libsecp256k1 | ||
Simple python bindings to libsecp256k1. It is intended to be used with the [btclib](https://github.com/btclib-org/btclib) bitcoin library. | ||
|
||
To install (and/or upgrade): | ||
|
||
python -m pip install --upgrade btclib_libsecp256k1 | ||
|
||
Some development tools are required to develop and test btclib_libsecp256k1; | ||
they can be installed with: | ||
|
||
python -m pip install --upgrade -r requirements-dev.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
setup( | ||
name="btclib_libsecp256k1", | ||
version="0.0.2", | ||
version="0.1.0", | ||
url="https://btclib.org", | ||
project_urls={ | ||
"Download": "https://github.com/btclib-org/btclib_libsecp256k1/releases", | ||
|
@@ -18,7 +18,7 @@ | |
license="MIT", | ||
author="Giacomo Caironi", | ||
author_email="[email protected]", | ||
description="Simple python bindins to libsecp256k1", | ||
description="Simple python bindings to libsecp256k1", | ||
long_description=open("README.md", "r", encoding="utf-8").read(), | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
|