Metadata-Version: 2.4
Name: qiskit-ibm-ai-local-transpiler
Version: 0.5.3
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Requires-Dist: qiskit>=1.4.2
Requires-Dist: qiskit-ibm-runtime>=0.37.0
Requires-Dist: networkx==2.8.5
Requires-Dist: jsonschema~=4.23
Requires-Dist: pytest>=5.4.0 ; extra == 'testing'
Requires-Dist: pytest-asyncio ; extra == 'testing'
Requires-Dist: black==24.1.0 ; extra == 'testing'
Requires-Dist: black[jupyter]==24.1.0 ; extra == 'testing'
Provides-Extra: testing
Summary: This package allows you to run a local version of the Qiskit AI-powered transpiler passes.
Keywords: qiskit,quantum circuit,quantum computing,AI,AI transpiler,Qiskit AI,quantum,sdk
Author: IBM Quantum
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# AI Transpiler Local

This package allows you to run a local version of the AI-powered transpiler passes.

## Using the AI Transpiler locally

Check out the related documentation in <https://docs.quantum.ibm.com/guides/ai-transpiler-passes>

## Run tests locally

### Quick start (recommended)

1. Sync dependencies:
   ```bash
   uv sync
   ```

2. Run tests:
   ```bash
   uv run pytest tests
   ```

### Using a specific Python version

Create a virtual environment with a specific Python version (3.10-3.14 supported):

```bash
# Create venv with desired Python version
uv venv --python 3.14

# Activate the environment
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install the package and test dependencies
uv pip install . pytest pytest-asyncio

# Run tests
pytest tests
```
