diff --git a/bip38/info.py b/bip38/info.py index fb691ad..7fb22f4 100644 --- a/bip38/info.py +++ b/bip38/info.py @@ -13,8 +13,14 @@ __email__: str = "meherett.batu@gmail.com" __documentation__: str = "https://bip38.readthedocs.com" __description__: str = "A Python library for implementation of Bitcoin Improvement Proposal - 0038 / BIP38 protocol." -__url__: str = "https://github.com/meherett/python-bip38" +__source__: str = "https://github.com/talonlab/python-bip38" +__url__: str = __source__ __tracker__: str = f"{__url__}/issues" __keywords__: List[str] = [ "bip38", "bitcoin", "private-key", "hdwallet", "encrypt", "decrypt", "passphrase", "wif", "bip-0038" ] +__websites__: List[str] = [ + "https://talonlab.org", + "https://talonlab.gitbook.io/bip38", + __documentation__ +] \ No newline at end of file diff --git a/setup.py b/setup.py index c2441b9..711c8d5 100644 --- a/setup.py +++ b/setup.py @@ -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__,