Skip to content

Commit

Permalink
Bump: Swap from v0.4.0 to v0.4.1 package.
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Aug 6, 2021
1 parent 5cfa463 commit 2ae6e83
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
11 changes: 3 additions & 8 deletions swap/__init__.py
Original file line number Diff line number Diff line change
@@ -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__"
]

0 comments on commit 2ae6e83

Please sign in to comment.