forked from darosior/python-bip32
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 937 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "slip10"
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"
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.8,<4.0"
[tool.poetry.group.dev.dependencies]
pytest = "*"
black = ">=20"
isort = "^5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"