Skip to content

Commit

Permalink
Bump: Python-HDWallet from v2.0.1 to v2.1.0 package.
Browse files Browse the repository at this point in the history
  • Loading branch information
meherett committed Dec 25, 2021
1 parent e0ec7e7 commit 814e3b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hdwallet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
)

# HDWallet Information's
__version__: str = "v2.0.1"
__version__: str = "v2.1.0"
__license__: str = "ISCL"
__author__: str = "Meheret Tesfaye Batu"
__email__: str = "[email protected]"
Expand Down
16 changes: 12 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
setup, find_packages
)

# Project URLs
project_urls = {
"Tracker": "https://github.com/meherett/python-hdwallet/issues",
"Documentation": "https://hdwallet.readthedocs.io"
}

# README.md
with open("README.md", "r", encoding="utf-8") as readme:
long_description: str = readme.read()
Expand All @@ -14,7 +20,7 @@

setup(
name="hdwallet",
version="v2.0.1",
version="v2.1.0",
description="Python-based library for the implementation of a hierarchical deterministic wallet "
"generator for more than 140+ multiple cryptocurrencies.",
long_description=long_description,
Expand All @@ -23,6 +29,7 @@
author="Meheret Tesfaye Batu",
author_email="[email protected]",
url="https://github.com/meherett/python-hdwallet",
project_urls=project_urls,
keywords=[
"cryptography", "cli", "wallet", "bip32", "bip44", "bip39", "hdwallet", "cryptocurrencies", "bitcoin", "ethereum"
],
Expand All @@ -38,9 +45,9 @@
"pytest-cov>=3.0.0,<4"
],
"docs": [
"sphinx>=4.2.0,<5",
"sphinx-rtd-theme>=1.0.0,<2",
"sphinx-click>=3.0.1,<4"
"sphinx>=4.3.2,<5",
"furo==2021.11.23"
"sphinx-click>=3.0.2,<4"
]
},
classifiers=[
Expand All @@ -50,6 +57,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)

0 comments on commit 814e3b7

Please sign in to comment.