From 77ddbaf5af8a0ec80b226e6d1c23a42598a27460 Mon Sep 17 00:00:00 2001 From: meherett Date: Sun, 14 Jul 2019 10:11:43 +0300 Subject: [PATCH] Upgraded eth-cobra --- .travis.yml | 2 +- README.md | 6 +++--- cobra/cli/__main__.py | 8 +++----- setup.py | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1c938e1..6514696 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,4 +21,4 @@ script: - ganache-cli -p 8545 > /dev/null & - sleep 5 - tox -after_success: if [ "${TRAVIS_PYTHON_VERSION}" == "3.7" ]; then coveralls; fi; \ No newline at end of file +after_success: if [ "${TRAVIS_PYTHON_VERSION}" == "3.7" ]; then coveralls; fi; diff --git a/README.md b/README.md index 433b68d..4a13c71 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ - + [![Build Status](https://travis-ci.com/meherett/cobra.svg?token=zWs2UgQUy4zmDh4gtGYH&branch=master)](https://travis-ci.com/meherett/cobra) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/py-cobra.svg) ![PyPI License](https://img.shields.io/pypi/l/py-cobra.svg?color=black) -![PyPI Version](https://img.shields.io/pypi/v/py-cobra.svg) +![PyPI Version](https://img.shields.io/pypi/v/py-cobra.svg?color=blue) [![Coverage Status](https://coveralls.io/repos/github/cobraframework/py-cobra/badge.svg?branch=master)](https://coveralls.io/github/cobraframework/py-cobra?branch=master) --- @@ -31,7 +31,7 @@ with other versions. ## Installation PIP to install cobra globally. For Linux sudo may be required. ``` -$ pip install py-cobra +$ pip install eth-cobra ``` ## Development diff --git a/cobra/cli/__main__.py b/cobra/cli/__main__.py index b139e2b..c0f88b3 100644 --- a/cobra/cli/__main__.py +++ b/cobra/cli/__main__.py @@ -19,11 +19,9 @@ def main(argv=None): usage=usage, formatter_class=argparse.RawDescriptionHelpFormatter, epilog=textwrap.dedent('''\ - -------------------- - !!!PLEASE HELP ME!!! - -------------------- - Donate with Bitcoin: 3JiPsp6bT6PkXF3f9yZsL5hrdQwtVuXXAk - Donate with Ethereum: 0xA963a015d355F08d82cDDD815FFe758f0092fE57 + !!!PLEASE HELP US!!! + Bitcoin: 1BZv4gKoX9UAyfxX6WEBRxnqnd4oTqncYo + Ethereum: 0xA963a015d355F08d82cDDD815FFe758f0092fE57 '''), description=description) diff --git a/setup.py b/setup.py index 86e92d7..ce2c703 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ requirements = list(map(str.strip, _requirements.read().split("\n")))[:-1] setup( - name="py-cobra", + name="eth-cobra", version='0.1.0', description='A fast, flexible and simple development environment framework for Ethereum smart contract, ' 'testing and deployment on Ethereum virtual machine(EVM). https://cobraframework.github.io',