You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,9 @@ poetry install
38
38
# With dev dependencies
39
39
pip install ".[dev]"
40
40
poetry install -E dev
41
+
42
+
# Install the dependencies only
43
+
poetry install -E dev --no-root
41
44
```
42
45
43
46
See the [note](#package-management) below about dev dependencies.
@@ -46,9 +49,15 @@ See the [note](#package-management) below about dev dependencies.
46
49
47
50
We welcome community contributions in the form of pull requests. When contributing code, please ensure:
48
51
49
-
-[PEP8](https://www.python.org/dev/peps/pep-0008/) style guidelines are followed.
50
52
- Documentation is provided. New functions and classes should have numpy/scipy style [docstrings](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt).
51
53
- Unit tests are written for new features that are not covered by [existing tests](https://github.com/MIT-LCP/wfdb-python/tree/master/tests).
54
+
- The code style is consistent with the project's formating standards.
0 commit comments