Skip to content

Commit

Permalink
fix: Add extra attributes to pyproject.toml for publishing on PyPi (#13)
Browse files Browse the repository at this point in the history
Co-authored-by: Thom Hopmans
  • Loading branch information
thomhopmans authored Oct 18, 2021
1 parent 032d2c6 commit 112c487
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Three applications:
- `pyraptor/query.py` - Get the best journey for a given origin, destination and desired departure time using RAPTOR
- `pyraptor/range_query.py` - Get a list of the best journeys to all destinations for a given origin and desired departure time window using RAPTOR

## Installation

Install from PyPi using `pip install pyraptor` or clone this repository and install from source using pip.

## Example usage

### 1. Create timetable from GTFS
Expand Down
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ name = "pyraptor"
version = "0.2.0"
description = "Journey planner with RAPTOR algorithm"
authors = ["Leo van der Meulen, Thom Hopmans"]
license = "MIT"
readme = "README.md"
homepage = "/~https://github.com/lmeulen/pyraptor"
repository = "/~https://github.com/lmeulen/pyraptor"
include = [
"LICENSE",
]

[tool.poetry.dependencies]
python = "^3.8"
Expand Down

0 comments on commit 112c487

Please sign in to comment.