We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ceb1b commit 8f2475bCopy full SHA for 8f2475b
1 file changed
{{cookiecutter.hyphenated}}/README.md
@@ -10,25 +10,26 @@
10
## Installation
11
12
Install this library using `pip`:
13
-
14
- pip install {{ cookiecutter.hyphenated }}
15
+```bash
+pip install {{ cookiecutter.hyphenated }}
+```
16
## Usage
17
18
Usage instructions go here.
19
20
## Development
21
22
To contribute to this library, first checkout the code. Then create a new virtual environment:
23
24
- cd {{ cookiecutter.hyphenated }}
25
- python -m venv venv
26
- source venv/bin/activate
27
+cd {{ cookiecutter.hyphenated }}
+python -m venv venv
+source venv/bin/activate
28
Now install the dependencies and test dependencies:
29
30
- pip install -e '.[test]'
31
+pip install -e '.[test]'
32
To run the tests:
33
34
- pytest
+pytest
35
0 commit comments