-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump: Python-HDWallet from v2.0.1 to v2.1.0 package.
- Loading branch information
Showing
2 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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() | ||
|
@@ -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, | ||
|
@@ -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" | ||
], | ||
|
@@ -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=[ | ||
|
@@ -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" | ||
] | ||
) |