Skip to content

Commit

Permalink
update documentation on build and upload package
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Mar 30, 2023
1 parent 080375b commit ab9b0b8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,21 @@ Available query fields:
- `date`: date to query, format: `YYYY-MM-DD`, e.g. `2022-01-01`
- `max_len`: filter results to only VRP's with specific max length
- `debug`: boolean toggle to display debug information, default `False`

## Build and Upload

Install `python-build` module:
``` bash
python3 -m pip install build twine
```

Build current package:
``` bash
python3 -m build
```

Upload to PyPi (needs credentials)
``` bash
python3 -m twine upload dist/*
```

0 comments on commit ab9b0b8

Please sign in to comment.