Metadata-Version: 2.4
Name: ra-system
Version: 0.1.0
Summary: Ra System mathematical constants - Python bindings
Project-URL: Homepage, https://github.com/anywave/ra-system
Project-URL: Repository, https://github.com/anywave/ra-system.git
Author-email: Anywave <info@anywavecreations.com>
License-Expression: Apache-2.0
Keywords: constants,harmonics,mathematics,ra-system
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Typing :: Typed
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: hypothesis>=6.0; extra == 'dev'
Requires-Dist: mypy>=1.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: ruff>=0.1; extra == 'dev'
Description-Content-Type: text/markdown

# Ra System - Python Bindings

Type-safe Python bindings for the Ra System mathematical constants from "The Rods of Amon Ra" by Wesley H. Bateman.

## Installation

```bash
pip install ra-system
```

## Usage

```python
from ra_system import ANKH, Repitan, RacLevel, OmegaFormat
from ra_system.gates import access_level

# Check access at 80% coherence for RAC1
result = access_level(0.8, RacLevel.RAC1)
print(result.is_full_access)  # True

# Create a validated Repitan
r = Repitan.create(9)
print(r.value)  # 0.333...
```

## Features

- **Constants**: Ankh, Hunab, H-Bar, Omega, chromatic Pi/Phi variants
- **Repitans**: 27 semantic sectors with smart constructor validation
- **RAC Levels**: 6 access sensitivity levels with ordering invariants
- **Omega Formats**: 5 coherence depth tiers with conversion matrix
- **Spherical Coordinates**: θ/φ/h/r dimensional mapping
- **Access Gating**: Coherence-based access logic

## License

Apache-2.0
