From f2d5598a410bd4a62244aece941e7211ef59313e Mon Sep 17 00:00:00 2001 From: Nat Chin Date: Wed, 8 Nov 2023 11:52:47 -0500 Subject: [PATCH] Cleaned docs --- CONTRIBUTING.md | 15 ++++----------- Makefile | 3 +++ 2 files changed, 7 insertions(+), 11 deletions(-) create mode 100644 Makefile diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b9ed2e8..6182cbc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -39,19 +39,12 @@ These will also run in a github workflow on each platform. ## Developer Environment -```bash -pip3 install virtualenvwrapper -source /usr/local/bin/virtualenvwrapper.sh -mkvirtualenv --python=`which python3` solc-select-dev -git clone https://github.com/crytic/solc-select.git -cd solc-select -python setup.py develop -``` - -Start a shell using the solc-select virutal environment by running: +Run `make dev` to create your own development environment. ```bash -workon solc-select-dev +git clone https://github.com/crytic/solc-select.git +cd solc-select +make dev ``` Update `solc-select` by running `git pull` from the `solc-select/` directory. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..23ae1c8 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +dev: + python3 -m venv env && source ./env/bin/activate + python3 -m pip install -e .