Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Make compilation instructions easier to copy
  • Loading branch information
Austin-Metke authored Dec 17, 2023
1 parent 8fbbb66 commit f7ea3a2
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ This program is licensed under the MIT license which grants you the permission t
## Development Help

To compile the extension in debug:

$ python3 -m venv venv
$ source venv/bin/activate
$ python -m pip install Cython pytest
$ python setup.py build_ext -g --inplace --force
$ python -m pytest
```bash
python3 -m venv venv
```
```bash
source venv/bin/activate
```
```bash
python -m pip install Cython pytest
```
```bash
python setup.py build_ext -g --inplace --force
```
```bash
python -m pytest
```

0 comments on commit f7ea3a2

Please sign in to comment.