Skip to content

Commit

Permalink
fix: added dependencies to setup.py (#106)
Browse files Browse the repository at this point in the history
So that they will be included when pyhelper imported
into another project. Also removed jsonrpcclient
which is no longer being used.
  • Loading branch information
marvinmarnold authored Jan 26, 2022
1 parent ecf5713 commit 60acded
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='hm_pyhelper',
version='0.13.3',
version='0.13.4',
author="Nebra Ltd",
author_email="[email protected]",
description="Helium Python Helper",
Expand All @@ -12,8 +12,9 @@
url="https://github.com/NebraLtd/hm-pyhelper",
install_requires=[
'requests>=2.26.0',
'jsonrpcclient==4.0.2',
'retry==0.9.2'
'retry==0.9.2',
'base58==2.1.1',
'protobuf==3.19.3'
],
project_urls={
"Bug Tracker": "https://github.com/NebraLtd/hm-pyhelper/issues",
Expand Down

0 comments on commit 60acded

Please sign in to comment.