Installation

Install to Project

To use GPyG in the project, install it to the dev group using poetry:

poetry add gpyg --group dev

then use it as the gpg program in git:

git config gpg.program /full/path/to/gpyg

Be sure to change /full/path/to/gpyg to the actual path to the gpyg script. This should be the copy of gpyg in the virtual environment created by poetry.

Install to System

To use GPyG system wide, install it with pipx:

pipx install gpyg

then use it as the gpg program in git:

git config --global gpg.program /full/path/to/gpyg

Be sure to change /full/path/to/gpyg to the actual path to the gpyg script. This is typically ~/.local/bin/gpyg.