typemap

Installation

How to install and set up typemap

Requirements

  • Python 3.14+
  • typing_extensions >= 4.0

Install from PyPI

pip install typemap

Install from Source

git clone https://github.com/nesalia-inc/python-typemap.git
cd python-typemap/packages/typemap
pip install -e .

Development Setup

# Clone the repository
git clone https://github.com/nesalia-inc/python-typemap.git
cd python-typemap

# Install dependencies
cd packages/typemap
uv sync

# Run tests
uv run pytest

Verify Installation

import typemap
from typemap import eval_typing
import typemap_extensions as tm

print("typemap installed successfully!")
print(f"Version: {typemap.__version__}")

On this page