Skip to content

Commit

Permalink
Fix: python-hdwallet docs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Nov 26, 2024
1 parent 56f4364 commit 366a4e0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 4 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": "",
Expand Down
7 changes: 3 additions & 4 deletions hdwallet/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@
__author__: str = "Meheret Tesfaye Batu"
__email__: str = "[email protected]"
__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] = [
Expand Down

0 comments on commit 366a4e0

Please sign in to comment.