-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 1.12 KB
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
[build-system]
requires = ["setuptools>=77.0.3"] # Because of the license keys. See https://setuptools.pypa.io/en/stable/history.html#v77-0-3
build-backend = "setuptools.build_meta"
[project]
name = "bip32"
version = "5.0.0"
dependencies = [
"coincurve>=15.0,<21",
]
requires-python = ">=3.9"
authors = [
{name = "Antoine Poinsot", email = "darosior@protonmail.com"},
]
maintainers = [
{name = "Antoine Poinsot", email = "darosior@protonmail.com"},
]
description = "Minimalistic implementation of BIP32 (Bitcoin HD wallets)"
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENCE"]
keywords = ["bitcoin", "key derivation", "HD wallet"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
]
[project.urls]
Homepage = "https://github.com/darosior/python-bip32"
Repository = "https://github.com/darosior/python-bip32"
Issues = "https://github.com/darosior/python-bip32/issues"
"Bug Tracker" = "https://github.com/darosior/python-bip32/issues"
Changelog = "https://github.com/darosior/python-bip32/tree/master/CHANGELOG.md"