Skip to content

Commit

Permalink
Syntax highlighting for Bash in README
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw authored Jan 16, 2024
1 parent 74ceb1b commit 8f2475b
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions {{cookiecutter.hyphenated}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,26 @@
## Installation

Install this library using `pip`:

pip install {{ cookiecutter.hyphenated }}

```bash
pip install {{ cookiecutter.hyphenated }}
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

cd {{ cookiecutter.hyphenated }}
python -m venv venv
source venv/bin/activate

```bash
cd {{ cookiecutter.hyphenated }}
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:

pip install -e '.[test]'

```bash
pip install -e '.[test]'
```
To run the tests:

pytest
```bash
pytest
```

1 comment on commit 8f2475b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.