From 366a4e073adae7a916da346a57fb5393dbe30594 Mon Sep 17 00:00:00 2001 From: meherett Date: Tue, 26 Nov 2024 19:48:39 +0300 Subject: [PATCH] Fix: python-hdwallet docs issue --- README.md | 1 + docs/conf.py | 7 ++++--- hdwallet/info.py | 7 +++---- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c195fde..858bb76 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,7 @@ print(json.dumps(hdwallet.dump(exclude={"indexes"}), indent=4, ensure_ascii=Fals "seed": "4e415367c4a4d57ed9737ca50d2f8bf38a274d1d7fb3dd6598c759101c595cdf54045dbaeb216cf3751ce47862c41ff79caf961ca6c2aed11854afeb5efc1ab7", "ecc": "SLIP10-Secp256k1", "hd": "BIP32", + "semantic": "p2pkh", "root_xprivate_key": "xprv9s21ZrQH143K4L18AD5Ko2ELW8bqaGLW4vfASZzo9yEN8fkZPZLdECXWXAMovtonu7DdEFwJuYH31QT96FWJUfkiLUVT8t8e3WNDiwZkuLJ", "root_xpublic_key": "xpub661MyMwAqRbcGp5bGEcLAAB54ASKyj4MS9amExQQiJmM1U5hw6esmzqzNQtquzBRNvLWtPC2kRu2kZR888FSAiZRpvKdjgbmoKRCgGM1YEy", "root_private_key": "7f60ec0fa89064a37e208ade560c098586dd887e2133bee4564af1de52bc7f5c", diff --git a/docs/conf.py b/docs/conf.py index 37609c0..72996d2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,15 +52,16 @@ # This pattern also affects html_static_path and html_extra_path. exclude_patterns = [] -# -- Options for HTML output ------------------------------------------------- +# Disable PDF and EPUB builders +builders = ['html'] # Only HTML builder -html_logo = "static/svg/hdwallet-logo.svg" +# -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = "furo" # Product logo name -# html_logo = "static/png/hdwallet.png" +html_logo = "static/svg/hdwallet-logo.svg" # Theme options html_theme_options = { # "canonical_url": "", diff --git a/hdwallet/info.py b/hdwallet/info.py index c93288e..f93a25a 100644 --- a/hdwallet/info.py +++ b/hdwallet/info.py @@ -12,14 +12,13 @@ __author__: str = "Meheret Tesfaye Batu" __email__: str = "meherett.batu@gmail.com" __documentation__: str = "https://hdwallet.readthedocs.com" -__description__: str = "Python-based library for the implementation of a hierarchical deterministic wallet " \ - "generator for more than 205+ multiple cryptocurrencies." +__description__: str = "Python-based library for the implementation of a Hierarchical Deterministic (HD) Wallet generator supporting more than 200 cryptocurrencies." __url__: str = "https://github.com/talonlab/python-hdwallet" __tracker__: str = f"{__url__}/issues" __keywords__: List[str] = [ - "ecc", "kholaw", "slip10", "ed25519", "nist256p1", "secp256k1" # ECC keywords + "ecc", "kholaw", "slip10", "ed25519", "nist256p1", "secp256k1", # ECC keywords "hd", "bip32", "bip44", "bip49", "bip84", "bip86", "bip141", "monero", "cardano", # HD keywords - "entropy", "mnemonic", "seed", "bip39", "algorand", "electrum" # Entropy, Mnemonic and Seed keywords + "entropy", "mnemonic", "seed", "bip39", "algorand", "electrum", # Entropy, Mnemonic and Seed keywords "cryptocurrencies", "bitcoin", "ethereum", "cryptography", "cli", "cip1852" # Other keywords ] __websites__: List[str] = [