Skip to content

Commit

Permalink
bump version to 1.0.3, add long_description
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Sherief <alihsherief@linuxmail.org>
  • Loading branch information
ZenulAbidin committed Nov 26, 2020
1 parent c302a9d commit 020ae61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bip39validator/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.2"
__version__ = "1.0.3"
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
from setuptools import setup, find_namespace_packages
import os.path

with open(os.path.join('.', 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='bip39validator',
version='1.0.2',
version='1.0.3',
long_description=long_description,
long_description_content_type='text/x-rst',
packages=find_namespace_packages(where='.'),
package_dir={'bip39validator': 'bip39validator'},
url='https://github.com/ZenulAbidin/bip39validator',
Expand Down

0 comments on commit 020ae61

Please sign in to comment.