Metadata-Version: 2.4
Name: crowe-synapse
Version: 3.0.1
Summary: Scientific reasoning language with uncertainty propagation and symbolic math — part of the Crowe Quantum Platform
Author-email: Michael Crowe <Crowelogicos@gmail.com>
License: MIT
Project-URL: Repository, https://github.com/MichaelCrowe11/crowe-quantum
Keywords: scientific,reasoning,uncertainty,symbolic,language
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
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: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: crowe-quantum-core>=1.0.0
Requires-Dist: numpy>=2.0.0
Requires-Dist: scipy>=1.14.0
Requires-Dist: sympy>=1.14.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov>=5.0; extra == "dev"
Requires-Dist: ruff>=0.4.0; extra == "dev"

# crowe-synapse

Synapse-Lang — a domain-specific language for quantum circuit design. Compiles human-readable quantum notation into CircuitIR.

## Installation

```bash
pip install crowe-synapse
```

## Features

- **Natural Syntax**: Write quantum circuits in readable notation
- **CircuitIR Output**: Compiles to the Crowe Quantum Platform's intermediate representation
- **Gate Support**: All standard single-qubit and multi-qubit gates
- **Measurement**: Built-in measurement and classical register support

## Quick Start

```python
from crowe_synapse import compile_synapse

# Compile a Bell state circuit
ir = compile_synapse("qubit |0⟩ → H → CNOT(q0, q1) → measure")
print(ir.operations)
```

## Part of the [Crowe Quantum Platform](https://github.com/MichaelCrowe11/crowe-quantum)
