Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/nav 152 fix pypi publish of client #2

Merged
merged 3 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/poetry-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
env:
TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry publish --username __token__ --password $TOKEN --no-interaction --build
poetry publish --username __token__ --password $TOKEN --no-interaction
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,5 @@ poetry run pytest -m integration

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
This project is licensed under the MIT License - see
the [LICENSE](https://github.com/naviqore/public-transit-client/blob/main/LICENSE) file for details.
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
[tool.poetry]
name = "public-transit-client"
version = "0.1.0"
version = "0.1.1"
description = "Client to access the public transit service API endpoints."
authors = ["Lukas Connolly <lukas@connolly.ch>", "Merlin Unterfinger <info@munterfinger.ch>"]
authors = [
"Lukas Connolly <lukas@connolly.ch>",
"Merlin Unterfinger <info@munterfinger.ch>"
]
readme = "README.md"
license = "MIT"
homepage = "https://pypi.org/project/public-transit-client/"
documentation = "https://naviqore.github.io/documentation/introduction.html"
repository = "https://github.com/naviqore/public-transit-client"

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