Installation

From PyPI

Install Hildie using pip:

pip install hildie

Or using uv (recommended):

uv pip install hildie

From Source

Clone the repository:

git clone https://github.com/clintonsteiner/hildies-python-monorepo.git
cd hildies-python-monorepo

Install in development mode:

uv pip install -e .

Requirements

  • Python 3.11 or higher

  • pip or uv for package management

Development Requirements

For development, you’ll need additional tools:

# Install development dependencies
uv pip install -e ".[dev]"

# Or using pip
pip install -e ".[dev]"

Development tools used in this project:

  • Bazel - Build system

  • pytest - Testing framework

  • ruff - Linting and formatting

  • pre-commit - Git hooks for code quality

Verifying Installation

After installation, verify that Hildie is installed correctly:

import hildie
print(hildie.__version__)