-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
272d9d0
commit f6be430
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|