Skip to content

GitHub Actions starter for python with python-poetry.

License

Notifications You must be signed in to change notification settings

pentatester/github-poetry-starter

Repository files navigation

Github Poetry Starter

GitHub Actions starter for python with python-poetry.

The complete documentation of python-poetry is available on the official website.

Usage

Bumps version

Bumps the version of the project and writes the new version back to pyproject.toml if a valid bump rule is provided.

poetry version minor

The new version should ideally be a valid semver string or a valid bump rule: patch, minor, major, prepatch, preminor, premajor, prerelease.

Publish to pypi

You need to have PyPI account.

Publish localy

poetry publish --build

Publish with github action

Add PYPI_USERNAME and PYPI_PASSWORD to your Actions secrets, learn more.

Then create a release.

You need to create a release everytime bump to the new version.

Dependency

Update dependencies

poetry update

Install dependency

poetry add requests

For dev requirement

poetry add requests --dev

Remove dependency

poetry remove requests

For dev requirement

poetry remove requests --dev

Export requirements.txt

-o for output.

poetry export -f requirements.txt -o requirements.txt --without-hashes

For dev requirements

poetry export -f requirements.txt -o requirements-dev.txt --dev --without-hashes

About

GitHub Actions starter for python with python-poetry.

Resources

License

Stars

Watchers

Forks

Languages