Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ 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 = ["Antoine Poinsot <[email protected]>", "Andrew R. Kozlik <[email protected]>"]
maintainers = ["Andrew R. Kozlik <[email protected]>"]
license = "MIT"

# slip10/ripemd160.py is MIT
license = "BSD-3-Clause AND MIT"
readme = [
"README.md",
"CHANGELOG.md",
Expand All @@ -23,6 +25,10 @@ pytest = "*"
black = ">=20"
isort = "^5"

[project]
license = "BSD-3-Clause AND MIT"
license-files = ["LICENCE"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Expand Down