Skip to content

Commit

Permalink
contributing.md (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstnbwnkl authored Apr 30, 2024
1 parent fd474a0 commit c269fd3
Showing 1 changed file with 27 additions and 19 deletions.
46 changes: 27 additions & 19 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# Contribution Guidelines

Thanks for considering to make a contribution to the vast landscape of routing engine APIs. We'd be really happy to
eventually be able to cover all remote routing API's, but have to rely on community contributions as this is a big task.
eventually be able to cover all remote open source routing API's, but have to rely on community contributions as this is a big task.

> Note: when this project first came about, the goal was to support commercial and open source APIs. This has since changed and we only focus on the open source ones these days, eventually phasing out the commercial ones as they grow stale.
## Table of Contents

<!-- TOC depthFrom:1 depthTo:6 withLinks:1 updateOnSave:0 orderedList:0 -->

- [Issues](#issues)
- [Submitting fixes](#submitting-fixes)
- [Setup](#setup)
- [Tests](#tests)
- [Documentation](#documentation)
- [Setup](#setup)
- [Tests](#tests)
- [Documentation](#documentation)
- [Adding router](#adding-router)

<!-- /TOC -->
Expand All @@ -22,11 +24,13 @@ eventually be able to cover all remote routing API's, but have to rely on commun

- Please make sure you don't submit a duplicate by browsing open and closed issues first and consult the [CHANGELOG](https://github.com/gis-ops/routingpy/blob/master/CHANGELOG.md) for already fixed issues

## Submitting fixes
## Pull requests

> **Important note**: please open an issue before starting to work on a fix or feature. This helps you save time and frustration. :-)
We welcome patches and fixes to existing clients and want to make sure everything goes smoothly for you while submitting a PR.

We use the PSF's [`black`](https://github.com/psf/black) to make sure the code style is consistent, and `flake8` as a linter.
We use the PSF's [`black`](https://github.com/psf/black) to make sure the code style is consistent, and `flake8` as a linter.

When contributing, we expect you to:

Expand All @@ -39,13 +43,15 @@ When contributing, we expect you to:
### Setup

1. Create and activate a new virtual environment (optional, but recommended):

```bash
# From the root of your git project
python -m venv .venv
source .venv/bin/activate
```

2. Install development dependencies:

```bash
# From the root of your git project
pip install -r requirements_dev.txt
Expand All @@ -54,12 +60,14 @@ poetry install
```

3. Run tests to check if all goes well:

```bash
# From the root of your git project
pytest -v
```

4. Please install the pre-commit hook, so your code gets auto-formatted and linted before committing it:

```bash
# From the root of your git project
pre-commit install
Expand Down Expand Up @@ -89,31 +97,31 @@ make hmtl
```

The documentation will have been added to `routingpy/docs/build/html` and you can open `index.html` in your web browser to view
the changes.
the changes.

We realize that *re-structured text* is not the most user-friendly format, but it is the currently best available
We realize that _re-structured text_ is not the most user-friendly format, but it is the currently best available
documentation format for Python projects. You'll find lots of copy/paste material in the existing implementations.

## Adding router

Let's add all routers in the world:)
Let's add all the open source routers in the world:)

It's really easy:

1. **New class** Create a new router module in `routingpy/routers` and base the new class on `routingpy/routers/base.py:Router`.
Also, check if the service hasn't been added before. E.g. if the router
you want to add is based on `GraphHopper`, you probably want to subclass `routingpy/routers/graphhopper.py:Graphhopper` class.
Additionally, import the new router class in `routingpy/routers/init.py`.
Also, check if the service hasn't been added before. E.g. if the router
you want to add is based on `GraphHopper`, you probably want to subclass `routingpy/routers/graphhopper.py:Graphhopper` class.
Additionally, import the new router class in `routingpy/routers/init.py`.

2. **Implementations** Implement the services the routing engine has to offer. The bare minimum is implementing the `directions` method.
If the routing engine also offers `isochrones` and `matrix`, we'd require you to add those too. If you want to add an
endpoint that doesn't exist yet in `routingpy/routers/base.py:Router`, please [consult us first](mailto:[email protected]?subject=contributing%20to%20routingpy), as we need to make sure
to be similarly consistent across different routing engines as we are with the existing endpoints.
If the routing engine also offers `isochrones` and `matrix`, we'd require you to add those too. If you want to add an
endpoint that doesn't exist yet in `routingpy/routers/base.py:Router`, please [consult us first](mailto:[email protected]?subject=contributing%20to%20routingpy), as we need to make sure
to be similarly consistent across different routing engines as we are with the existing endpoints.

3. **Tests** Create a new test module testing the functionality, **not** the API.
Use `@responses.activate` decorators for this.
To run the new tests and ensure consistency, refer to the [Tests](#tests) section above. **Don't store secrets** in the tests.
Use `@responses.activate` decorators for this.
To run the new tests and ensure consistency, refer to the [Tests](#tests) section above. **Don't store secrets** in the tests.

4. **Document** Please use docstring documentation for all user-exposed functionality, similar to other router implementations.
Also, please register the new module in `docs/indes.rst`'s `Routers` section. To build the docs, refer to the
[documentation section](#documentation) for details. Don't forget to add your name to the list of `AUTHORS.md`.
Also, please register the new module in `docs/indes.rst`'s `Routers` section. To build the docs, refer to the
[documentation section](#documentation) for details. Don't forget to add your name to the list of `AUTHORS.md`.

0 comments on commit c269fd3

Please sign in to comment.