From 15845cb5e30a5c4440c914b46398ae76c3afcf20 Mon Sep 17 00:00:00 2001 From: Josselin Date: Fri, 19 Oct 2018 13:58:02 +0100 Subject: [PATCH] Add slither-analyzer to pypi (close #41) Version 0.1.0 --- README.md | 6 ++---- setup.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 84b23bb586..0f87dc524f 100644 --- a/README.md +++ b/README.md @@ -66,15 +66,13 @@ Check | Purpose | Impact | Confidence ## How to install Slither requires Python 3.6+ and [solc](https://github.com/ethereum/solidity/), the Solidity compiler. - +### Using Git ```bash $ git clone https://github.com/trailofbits/slither.git && cd slither diff --git a/setup.py b/setup.py index 9b20102061..8de27eb00a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ description='Slither is a Solidity static analysis framework written in Python 3.', url='https://github.com/trailofbits/slither', author='Trail of Bits', - version='0.1', + version='0.1.0', packages=find_packages(), python_requires='>=3.6', install_requires=['prettytable>=0.7.2'],