We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a6e61e commit d14bcdfCopy full SHA for d14bcdf
1 file changed
README.md
@@ -36,7 +36,13 @@ source .venv/bin/activate
36
Install the dependencies:
37
38
```sh
39
-python3 -m pip install -e '.[test]'
+pip install -e '.[test]'
40
+```
41
+
42
+Install pre-commit into your git hooks:
43
44
+```sh
45
+pre-commit install
46
```
47
48
Generate distribution packages:
@@ -48,13 +54,13 @@ python3 -m build
54
Upload all of the archives under `dist`:
49
55
50
56
51
-python3 -m twine upload --repository testpypi dist/*
57
+twine upload --repository testpypi dist/*
52
58
53
59
60
Install the package:
61
62
-python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps python_package_template
63
+pip install --index-url https://test.pypi.org/simple/ --no-deps python_package_template
64
65
66
## License
0 commit comments