Skip to content

Commit

Permalink
Merge pull request #10 from bandprotocol/fix-setup
Browse files Browse the repository at this point in the history
Fix setup
  • Loading branch information
taobun authored Aug 3, 2021
2 parents 913f095 + 282a3bc commit 6c3e4e3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include pyband/proto *.py
6 changes: 2 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ click==7.1.2
coincurve==13.0.0
colorama==0.4.3
coverage==5.2.1
dacite==1.5.1
docutils==0.16
ecdsa==0.15
grpcio==1.38.0
Expand All @@ -24,22 +23,21 @@ iniconfig==1.0.1
keyring==21.2.1
mnemonic==0.19
more-itertools==8.4.0
mypy-extensions==0.4.3
packaging==20.4
pathspec==0.8.0
pkginfo==1.5.0.1
pluggy==0.13.1
protobuf==3.17.1
protobuf==3.17.3
py==1.9.0
pycparser==2.20
Pygments==2.6.1
pyparsing==2.4.7
pytest==6.0.1
pytest-cov==2.10.1
pytest-grpc==0.8.0
python-dotenv==0.17.1
readme-renderer==26.0
regex==2020.10.28
requests==2.24.0
requests-mock==1.8.0
requests-toolbelt==0.9.1
rfc3986==1.4.0
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@

setuptools.setup(
name="pyband",
packages=["pyband"],
version="0.2.0.dev1",
packages=setuptools.find_packages(),
include_package_data=True,
version="0.2.7",
license="MIT",
description="Python library for BandChain",
long_description=long_description,
Expand All @@ -15,7 +16,7 @@
author_email="[email protected]",
url="https://github.com/bandprotocol/bandchain",
keywords=["BAND", "BLOCKCHAIN", "ORACLE"],
install_requires=["requests", "dacite", "bech32", "bip32", "ecdsa", "mnemonic"],
install_requires=["bech32", "bip32", "ecdsa", "mnemonic", "grpcio", "protobuf"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 6c3e4e3

Please sign in to comment.