diff --git a/.github/workflows/poetry-publish.yml b/.github/workflows/poetry-publish.yml index df82eae..9d7acb1 100644 --- a/.github/workflows/poetry-publish.yml +++ b/.github/workflows/poetry-publish.yml @@ -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 diff --git a/README.md b/README.md index 0676370..4b39904 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 62a3301..e3bd653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ", "Merlin Unterfinger "] +authors = [ + "Lukas Connolly ", + "Merlin Unterfinger " +] 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"