From 2a6ee09b47147f500a85baffb94661538ad7195f Mon Sep 17 00:00:00 2001 From: Jonny Heggheim Date: Sat, 5 Apr 2025 16:53:26 +0300 Subject: [PATCH] Updated license field, also added the fields as defined in PEP 639 --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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"