Skip to content

Commit

Permalink
fix protobuf-to-dict dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ubergaijin committed Jan 11, 2019
1 parent 272d9d0 commit f6be430
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ ecdsa
ed25519
grpc
grpcio
#grpcio-tools
googleapis-common-protos
protobuf-to-dict==git+ssh://[email protected]/wearefair/protobuf-to-dict
protobuf3-to-dict
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
setup(
name = 'pyost', # How you named your package folder (MyLib)
packages = ['pyost','pyost.rpc.pb'], # Chose the same as "name"
version = 'v2.1-beta.3', # Start with a small number and increase it with every change you make
version = 'v2.1-beta.4', # Start with a small number and increase it with every change you make
license='LGPG', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Python SDK for the IOST Blockchain', # Give a short description about your library
author = 'Cyril Clement', # Type in your name
author_email = '[email protected]', # Type in your E-Mail
url = 'https://github.com/dossiman/pyost', # Provide either the link to your github or to your website
download_url = 'https://github.com/dossiman/pyost/archive/v2.1-beta.3.tar.gz', # I explain this later on
download_url = 'https://github.com/dossiman/pyost/archive/v2.1-beta.4.tar.gz', # I explain this later on
keywords = ['IOST', 'blockchain', 'API', 'SDK'], # Keywords that define your package best
install_requires=[ # I get to this in a second
'base58',
'ecdsa',
'ed25519',
'grpcio',
'googleapis-common-protos',
'protobuf-to-dict'],
'protobuf3-to-dict'],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
Expand Down

0 comments on commit f6be430

Please sign in to comment.