Installation

The most recent release can be installed from PyPI with uv:

$ uv pip install biolookup

or with pip:

$ python3 -m pip install biolookup

Installing from git

The most recent code and data can be installed directly from GitHub with uv:

$ uv --preview pip install git+https://github.com/biopragmatics/biolookup.git

or with pip:

$ UV_PREVIEW=1 python3 -m pip install git+https://github.com/biopragmatics/biolookup.git

Note

The UV_PREVIEW environment variable is required to be set until the uv build backend becomes a stable feature.

Installing for development

To install in development mode with uv:

$ git clone git+https://github.com/biopragmatics/biolookup.git
$cd biolookup
$ uv --preview pip install -e .

or with pip:

$ UV_PREVIEW=1 python3 -m pip install -e .