-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove TODO comment. * First dev docs version. * Add contributing guide. * Adjust slightly the feature roadmap attention. * Ensure ordering of get started page is fixed.
- Loading branch information
1 parent
23177c2
commit 7b6d9f6
Showing
8 changed files
with
161 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
# Contributing Guide | ||
|
||
**Contributions to `spikewrap`` are very welcome and appreciated. This could be | ||
fixing a bug, improving the documentation or developing a new feature. | ||
|
||
If you're unsure about any part of the contributing process or have any questions, please | ||
get in touch through our [Zulip chat](https://neuroinformatics.zulipchat.com/#narrow/stream/406002-Spikewrap). | ||
Otherwise, feel free to dive right in and start contributing by | ||
[creating a development environment](#creating-a-development-environment) | ||
and [opening a pull request](#pull-requests). | ||
|
||
## Creating a development environment | ||
|
||
To install ``spikewrap`` for development, first the | ||
[GitHub repository](https://github.com/neuroinformatics-unit/spikewrap) | ||
should be cloned. Then, you can change-directory | ||
to the cloned repository and run pip install with the developer tag: | ||
|
||
```sh | ||
pip install -e .[dev] | ||
``` | ||
|
||
or if using `zsh`: | ||
|
||
```sh | ||
pip install -e '.[dev]' | ||
``` | ||
|
||
Finally, initialise the [pre-commit hooks](#formatting-and-pre-commit-hooks): | ||
|
||
```bash | ||
pre-commit install | ||
``` | ||
|
||
|
||
## Pull requests | ||
|
||
In all cases, please submit code to the main repository via a pull request. The developers recommend and adhere | ||
to the following conventions: | ||
|
||
- Please submit *draft* pull requests as early as possible (you can still push to the branch once submitted) to | ||
allow for discussion. | ||
- One approval of a PR (by a repo maintainer) is sufficient for it to be merged. | ||
- If the PR receives approval without additional comments, it will be merged immediately by the approving reviewer. | ||
|
||
A typical PR workflow would be as follows: | ||
* Create a new branch, make your changes, and add them with `git add`. | ||
* When you attempt to commit, the [pre-commit hooks](#formatting-and-pre-commit-hooks) will be triggered. | ||
* `git add` any changes made by the hooks, and commit. More information on dealing with the [pre-commit hooks](#formatting-and-pre-commit-hooks) is available below. | ||
* Push your changes to GitHub and open a draft pull request. | ||
* Please don't hesitate to ask any developer for help on draft pull requests at our [Zulip chat](https://neuroinformatics.zulipchat.com/#narrow/stream/406002-Spikewrap). | ||
* If all checks run successfully, mark the pull request as ready for review. | ||
* Respond to review comments and implement any requested changes. | ||
* One of the maintainers will approve the PR. | ||
* Your PR will be merged into the *main* branch! | ||
|
||
## Formatting and pre-commit hooks | ||
|
||
Running `pre-commit install` will set up [pre-commit hooks](https://pre-commit.com/) to ensure a consistent formatting style. Currently, these include: | ||
* [ruff](https://github.com/astral-sh/ruff), which does a number of jobs including code linting and auto-formatting. | ||
* [mypy](https://mypy.readthedocs.io/en/stable/index.html), a static type checker. | ||
* [black](https://github.com/psf/black), an auto-formatter. | ||
* [check-manifest](https://github.com/mgedmin/check-manifest), to ensure that the right files are included in the pip package. | ||
* [codespell](https://github.com/codespell-project/codespell), to check for common misspellings. | ||
|
||
|
||
Pre-commit hooks will automatically run when a commit is made. | ||
To manually run all the hooks before committing: | ||
|
||
```sh | ||
pre-commit run # for staged files | ||
pre-commit run -a # for all files in the repository | ||
``` | ||
|
||
Some problems will be automatically fixed by the hooks. In this case, you should | ||
stage the auto-fixed changes and run the hooks again: | ||
|
||
```sh | ||
git add . | ||
pre-commit run | ||
``` | ||
|
||
If a problem cannot be auto-fixed, the corresponding tool will provide | ||
information on what the issue is and how to fix it. For example, `ruff` might | ||
output something like: | ||
|
||
```sh | ||
session.py:551:80: E501 Line too long (90 > 79) | ||
``` | ||
|
||
This pinpoints the problem to a single line of code and a specific [ruff rule](https://docs.astral.sh/ruff/rules/) violation. | ||
Sometimes you may have good reasons to ignore a particular rule for a specific line. | ||
You can do this by adding an inline comment, e.g. `# noqa: E501`. Replace `E501` with the code of the rule you want to ignore. | ||
|
||
Don't worry if you are stuck and are not sure how to fix linting | ||
issues. Feel free to commit with the `--no-verify` option which will | ||
skip pre-commit checks, and ask for help in your PR. | ||
|
||
For docstrings, we adhere to the [numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html) style. | ||
Make sure to provide docstrings for all public functions, classes, and methods. | ||
|
||
## Contributing documentation | ||
|
||
If you notice any areas where the documentation can be improved, | ||
please don't hesitate to make a contribution. | ||
|
||
### Working with the documentation | ||
|
||
The documentation is found in the `docs/source` folder, where the structure mirrors the rendered website. | ||
|
||
Dependencies for building the documentation locally can be found at `docs/requirements.txt`. | ||
To install these, change directory to the `docs` folder in your terminal and type: | ||
|
||
``` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
The command to build the documentation is: | ||
|
||
``` | ||
make clean html | ||
``` | ||
|
||
Any existing builds will be removed, and documentation will be built and output | ||
to the `build` folder. To read the built documentation in a browser, navigate to the `build` | ||
folder and open the `index.html` file. | ||
|
||
|
||
### Editing the documentation | ||
|
||
The documentation is hosted using [GitHub Pages](https://pages.github.com/), and the source can be found at | ||
[GitHub](https://github.com/neuroinformatics-unit/spikewrap/tree/main/docs). | ||
Most content is found under `docs/source`, where the structure mirrors the rendered website. | ||
|
||
To edit a page, please: | ||
|
||
- Fork the repository | ||
- Make edits to the relevant pages | ||
- Build the pages as above to inspect your changes | ||
- Create a pull request outlining the changes made | ||
|
||
If you aren't sure where the changes should be made, please | ||
[get in touch!](https://neuroinformatics.zulipchat.com/#narrow/stream/406002-Spikewrap) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
docs/source/get_started/install.md → docs/source/get_started/installation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters