Skip to content

Commit f510995

Browse files
Merge pull request #25 from ElrondNetwork/fix-requirements-setup
Fix requirements setup
2 parents 6ce0097 + 3d672a8 commit f510995

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

erdpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.16"
1+
__version__ = "1.0.17"

mypy.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ ignore_missing_imports = True
1414

1515
[mypy-ledgercomm.*]
1616
ignore_missing_imports = True
17+
18+
[mypy-setuptools.*]
19+
ignore_missing_imports = True

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"
55

6-
VERSION = "1.0.16"
6+
VERSION = "1.0.17"
77

88
try:
99
with open('./erdpy/_version.py', 'wt') as versionfile:
@@ -26,7 +26,14 @@
2626
include_package_data=True,
2727
setup_requires=["wheel"],
2828
install_requires=[
29-
"toml>=0.10.2", "bottle", "requests", "pynacl", "pycryptodomex", "cryptography>=3.2", "prettytable"
29+
"toml>=0.10.2",
30+
"bottle",
31+
"requests",
32+
"pynacl",
33+
"pycryptodomex",
34+
"cryptography>=3.2",
35+
"prettytable",
36+
"ledgercomm"
3037
],
3138
zip_safe=False,
3239
keywords=["Elrond"],

0 commit comments

Comments
 (0)