Skip to content

Commit 9c410e7

Browse files
committed
Add: __source__ & __websites__ for package
1 parent beb1a55 commit 9c410e7

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

bip38/info.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@
1313
__email__: str = "[email protected]"
1414
__documentation__: str = "https://bip38.readthedocs.com"
1515
__description__: str = "A Python library for implementation of Bitcoin Improvement Proposal - 0038 / BIP38 protocol."
16-
__url__: str = "https://github.com/meherett/python-bip38"
16+
__source__: str = "https://github.com/talonlab/python-bip38"
17+
__url__: str = __source__
1718
__tracker__: str = f"{__url__}/issues"
1819
__keywords__: List[str] = [
1920
"bip38", "bitcoin", "private-key", "hdwallet", "encrypt", "decrypt", "passphrase", "wif", "bip-0038"
2021
]
22+
__websites__: List[str] = [
23+
"https://talonlab.org",
24+
"https://talonlab.gitbook.io/bip38",
25+
__documentation__
26+
]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def get_requirements(name: str) -> List[str]:
4141
url=info.__url__,
4242
project_urls={
4343
"Tracker": info.__tracker__,
44+
"Source": info.__source__,
4445
"Documentation": info.__documentation__
4546
},
4647
keywords=info.__keywords__,

0 commit comments

Comments
 (0)