From 9c410e793727d4cb83ec705f2101e766921410c0 Mon Sep 17 00:00:00 2001 From: meherett Date: Sun, 1 Dec 2024 13:54:28 +0300 Subject: [PATCH] Add: __source__ & __websites__ for package --- bip38/info.py | 8 +++++++- setup.py | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) 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__,