Metadata-Version: 2.4
Name: softqlib
Version: 0.1.0
Summary: SoftQLib — SoftQuantus Quantum Library SDK
License: MIT
Project-URL: Homepage, https://github.com/softquantus/softqlib
Project-URL: Source, https://github.com/softquantus/softqlib
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: classiq

# SoftQLib

SoftQuantus Quantum Library SDK — transparent proxy for the Classiq SDK.

```bash
pip install softqlib
```

All Classiq functionality is available under the `softqlib` namespace:

```python
from softqlib import *

@qfunc
def main(res: Output[QBit]):
    allocate(1, res)
    X(res)

quantum_program = synthesize(main)
```
