diff --git a/pyproject.toml b/pyproject.toml index 37d9ca3..4d826bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ", "Andrew R. Kozlik "] maintainers = ["Andrew R. Kozlik "] -license = "MIT" + +# slip10/ripemd160.py is MIT +license = "BSD-3-Clause AND MIT" readme = [ "README.md", "CHANGELOG.md", @@ -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"