Metadata-Version: 2.4
Name: brik64
Version: 0.1.0b5
Summary: BRIK64 Python SDK beta for monomer helpers and EVA composition patterns aligned with CLI 0.1.0-beta.5.
Author-email: BRIK64 INC <info@brik64.com>
License: Apache License, Version 2.0
        Copyright 2026 BRIK-64 Inc.
        http://www.apache.org/licenses/LICENSE-2.0
        
Project-URL: Homepage, https://brik64.com
Project-URL: Repository, https://github.com/brik64/brik64-lib-python
Keywords: brik64,digital-circuitality,monomers,pcd,sdk
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# brik64

Python SDK beta for BRIK64 monomer helpers and EVA composition patterns.

Current SDK beta: `0.1.0b5`
Aligned CLI beta: `0.1.0-beta.5`

## Install

```bash
pip install brik64==0.1.0b5
```

The BRIK64 CLI is distributed separately in beta5:

```bash
curl -fsSL https://brik64.com/cli/install.sh | bash
```

## Usage

```python
from brik64.mc.arithmetic import add8, mul8
from brik64.eva import seq

double_then_triple = seq(lambda x: x + x, lambda x: x * 3)
print(double_then_triple(5))  # 30
print(add8(200, 100))         # 44 (wrapping)
```

## Beta Boundary

This package is a beta SDK surface for Python projects. It is useful for
examples, local integration, and working with BRIK64-style monomer and EVA
concepts in application code.

It does not by itself establish formal certification, N5/L5+N5 status,
self-hosting, fixpoint, production approval, or CLI installation.

## Public References

- Website: https://brik64.com
- Docs: https://docs.brik64.com
- CLI release: https://github.com/brik64/brik64-cli/releases/tag/v0.1.0-beta.5

## Beta5 Release Boundary

This repository is aligned to the beta5 CLI contract, but marketplace
publication is blocked until the beta5 release surface gate authorizes SDK
publication.

## License

See [LICENSE](LICENSE).
