Installation

Using pip

Install from PyPI using:

pip install pyTGA

Using uv

uv is a fast Python package manager. Install pyTGA using:

uv add pyTGA

Or in a virtual environment:

uv venv
uv pip install pyTGA

Development Installation

If you want to install the development version:

  1. Clone the repository:

git clone https://github.com/MyonicS/pyTGA
  1. Install in development mode with dev dependencies:

cd pyTGA
pip install -e .[dev]

Or using uv:

cd pyTGA
uv pip install -e .[dev]