From 2ae6e8377f8a2b931dfc27f898deed198f6dd5f2 Mon Sep 17 00:00:00 2001 From: meherett Date: Fri, 6 Aug 2021 22:39:52 +0300 Subject: [PATCH] Bump: Swap from v0.4.0 to v0.4.1 package. --- setup.py | 4 ++-- swap/__init__.py | 11 +++-------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index 8263ed1..b936140 100644 --- a/setup.py +++ b/setup.py @@ -23,10 +23,10 @@ license=swap.__license__, author=swap.__author__, author_email=swap.__email__, - url="https://github.com/meherett/swap", + url="https://github.com/movnetwork/swap", packages=find_packages(), keywords=[ - "cross-chain", "atomic", "swap", "htlc", "bitcoin", "bytom", "ethereum", "vapor", "xinfin", "cryptocurrencies" + "cross-chain", "atomic-swap", "swap", "htlc", "bitcoin", "bytom", "ethereum", "vapor", "xinfin", "cryptocurrencies" ], entry_points={ "console_scripts": ["swap=swap.cli.__main__:main"] diff --git a/swap/__init__.py b/swap/__init__.py index f6ee1a8..f07e2a7 100644 --- a/swap/__init__.py +++ b/swap/__init__.py @@ -1,18 +1,13 @@ #!/usr/bin/env python3 - # Swap Information's -__version__: str = "0.4.0" +__version__: str = "0.4.1" __license__: str = "AGPL-3.0" __author__: str = "Meheret Tesfaye Batu" __email__: str = "meherett@zoho.com" __description__: str = "Cross-chain atomic swap between the networks of two cryptocurrencies " \ "based on Hash Time Lock Contracts (HTLC's) protocol." -__all__ = [ - "__version__", - "__license__", - "__author__", - "__email__", - "__description__" +__all__: list = [ + "__version__", "__license__", "__author__", "__email__", "__description__" ]