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
|
[project]
name = "slip10"
version = "1.1.0"
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."
# slip10/ripemd160.py is MIT
license = "BSD-3-Clause AND MIT"
license-files = [ "LICENCE" ]
dynamic = [ "readme" ]
authors = [
{ name = "Antoine Poinsot", email = "darosior@protonmail.com" },
{ name = "Andrew R. Kozlik", email = "andrew.kozlik@satoshilabs.com" },
]
maintainers = [
{ name = "Andrew R. Kozlik", email = "andrew.kozlik@satoshilabs.com" },
]
keywords = [ "bitcoin", "slip10", "hdwallet" ]
[project.urls]
repository = "https://github.com/trezor/python-slip10"
[tool.poetry]
readme = [
"README.md",
"CHANGELOG.md",
]
[tool.poetry.dependencies]
cryptography = "*"
python = ">=3.8,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "*"
black = ">=20"
isort = "^5"
# Fix pytest for python 3.10
# See https://github.com/pytest-dev/pytest/issues/12177#issue-2220516002
exceptiongroup = { version = "*", markers = "python_version == '3.10'" }
tomli = { version = "*", markers = "python_version == '3.10'" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
|