Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Modify README.md, build.sh setup.py to upload to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
eunsoopark committed Aug 22, 2018
1 parent 74584af commit bfd99b2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
15 changes: 2 additions & 13 deletions README.md
Expand Up @@ -75,11 +75,7 @@ $ virtualenv -p python3 .
$ source bin/activate

# Install the ICON SCORE dev tools
(work) $ pip install earlgrey-x.x.x-py3-none-any.whl
(work) $ pip install iconcommons-x.x.x-py3-none-any.whl
(work) $ pip install iconservice-x.x.x-py3-none-any.whl
(work) $ pip install iconrpcserver-x.x.x-py3-none-any.whl
(work) $ pip install tbears-x.x.x-py3-none-any.whl
(work) $ pip install t-bears
```

### Setup on Linux
Expand All @@ -99,11 +95,7 @@ $ virtualenv -p python3 .
$ source bin/activate

# Install the ICON SCORE dev tools
(work) $ pip install earlgrey-x.x.x-py3-none-any.whl
(work) $ pip install iconcommons-x.x.x-py3-none-any.whl
(work) $ pip install iconservice-x.x.x-py3-none-any.whl
(work) $ pip install iconrpcserver-x.x.x-py3-none-any.whl
(work) $ pip install tbears-x.x.x-py3-none-any.whl
(work) $ pip install t-bears
```

## How to use T-Bears
Expand Down Expand Up @@ -1434,9 +1426,6 @@ Following CLI commands and options can be defined in the configuration file.
## Reference
- [SCORE development guide and examples](https://repo.theloop.co.kr/icon/loopchain-icon/blob/master/icon/docs/dapp_guide.md)
- [ICON JSON-RPC API v3](https://repo.theloop.co.kr/theloop/LoopChain/wikis/doc/loopchain-json-rpc-v3)
## License
This project follows the Apache 2.0 License. Please refer to [LICENSE](https://www.apache.org/licenses/LICENSE-2.0) for details.
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -15,4 +15,4 @@ fi

pip install wheel
rm -rf build dist *.egg-info
python setup.py bdist_wheel
python setup.py sdist bdist_wheel
8 changes: 4 additions & 4 deletions docs/tbears_blockmanager.wsd
@@ -1,8 +1,8 @@
@startuml tbears blockmanager work flow
@startuml T-Bears blockmanager work flow

actor "Client or tbears cli" as client
participant "ICON RpcServer" as rpcserver #lightblue
participant "tbears Blockmanager" as blockmanager
actor "Client or T-Bears cli" as client
participant "ICON RPC Server" as rpcserver #lightblue
participant "T-Bears Block Manager" as blockmanager
participant "ICON Service" as icon #lightgreen

group initialize
Expand Down
12 changes: 9 additions & 3 deletions setup.py
Expand Up @@ -9,6 +9,10 @@
version = version_file.read().strip()

requires = [
'earlgrey',
'icon-commons',
'icon-rpc-server',
'icon-service',
'requests>=2.19.1',
'jsonrpcserver>=3.5.3',
'sanic>=0.7.0',
Expand All @@ -20,10 +24,12 @@


setup_options = {
'name': 'tbears',
'name': 't-bears',
'version': version,
'description': '`tbears` for ICON SCORE development',
'author': 'ICON foundation',
'description': 'Test suite for ICON SCORE development',
'long_description': open('README.md').read(),
'long_description_content_type': "text/markdown",
'author': 'ICON Foundation',
'author_email': 'foo@icon.foundation',
'packages': find_packages(exclude=['tests*', 'docs']),
'include_package_data': True,
Expand Down

0 comments on commit bfd99b2

Please sign in to comment.