Skip to content

Commit

Permalink
add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Oct 1, 2022
1 parent 1b7e20a commit 4385715
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.PHONY: default install build run

default: test

install:
poetry install

build:
poetry run maturin develop

build-prod:
poetry run maturin develop --release

test: build
poetry run pytest -s pytest/*
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
![py](https://github.com/gakonst/pyrevm/workflows/py/badge.svg)
![rust](https://github.com/gakonst/pyrevm/workflows/rust/badge.svg)

## Installation
## Quickstart

```
pip install pyrevm
make install
make test
```

## Example Usage
Expand Down

0 comments on commit 4385715

Please sign in to comment.