Skip to content

Commit

Permalink
Add: __source__ link on setup project_urls
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Nov 27, 2024
1 parent 3edf9be commit f5e61b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions hdwallet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
__email__,
__documentation__,
__description__,
__source__,
__url__,
__tracker__,
__keywords__,
Expand All @@ -29,6 +30,7 @@
"__email__",
"__documentation__",
"__description__",
"__source__",
"__url__",
"__tracker__",
"__keywords__",
Expand Down
7 changes: 4 additions & 3 deletions hdwallet/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
__email__: str = "[email protected]"
__documentation__: str = "https://hdwallet.readthedocs.com"
__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"
__source__: str = "https://github.com/talonlab/python-hdwallet"
__url__: str = "https://hdwallet.io"
__tracker__: str = f"{__source__}/issues"
__keywords__: List[str] = [
"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
"cryptocurrencies", "bitcoin", "ethereum", "cryptography", "cli", "cip1852" # Other keywords
]
__websites__: List[str] = [
"https://hdwallet.io",
__url__,
"https://hdwallet.online",
"https://hd.wallet" # On Web3 browsers like Brave
]
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ def get_requirements(name: str) -> List[str]:
url=info.__url__,
project_urls={
"Tracker": info.__tracker__,
"Source": info.__source__,
"Documentation": info.__documentation__
},
keywords=info.__keywords__,
Expand Down

0 comments on commit f5e61b2

Please sign in to comment.