forked from darosior/python-bip32
-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
bc35191
commit fa1f8fc
Showing
3 changed files
with
13 additions
and
4 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,3 +1,7 @@ | ||
## 1.0.1 | ||
|
||
- Support Python 3.8 | ||
|
||
## 1.0.0 | ||
|
||
- First release forked from Antoine Poinsot's python-bip32. |
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,19 +1,22 @@ | ||
[tool.poetry] | ||
name = "slip10" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
description = "A reference implementation of the SLIP-0010 specification, which generalizes the BIP-0032 derivation scheme for private and public key pairs in hierarchical deterministic wallets for the curves secp256k1, NIST P-256, ed25519 and curve25519." | ||
authors = ["Andrew R. Kozlik <[email protected]>"] | ||
authors = ["Antoine Poinsot <[email protected]>", "Andrew R. Kozlik <[email protected]>"] | ||
maintainers = ["Andrew R. Kozlik <[email protected]>"] | ||
license = "MIT" | ||
readme = [ | ||
"README.md", | ||
"CHANGELOG.md", | ||
] | ||
repository = "https://github.com/trezor/python-slip10" | ||
keywords = ["bitcoin", "slip10", "hdwallet"] | ||
|
||
[tool.poetry.dependencies] | ||
cryptography = "*" | ||
ecdsa = "*" | ||
base58 = "^2" | ||
python = ">=3.9,<4.0" | ||
python = ">=3.8,<4.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "*" | ||
|
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