Metadata-Version: 2.4
Name: playtow
Version: 0.2.0a0
Summary: PlayTow — unified facade over the PlayTow scientific computing ecosystem.
Author-email: Andrew Keith Watts <andrewkwatts@gmail.com>
Project-URL: Homepage, https://github.com/andrewkwatts-maker/PlayTow
Project-URL: Repository, https://github.com/andrewkwatts-maker/PlayTow
Project-URL: Bug Tracker, https://github.com/andrewkwatts-maker/PlayTow/issues
Keywords: mathematics,physics,chemistry,eml,periodic-table,metaphysics,scientific-computing
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: periodica>=2.0.0a0
Requires-Dist: metaphysica>=2.0.0a0
Requires-Dist: eml-math>=2.0.0a0
Requires-Dist: eml-spectral>=2.0.0a0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: ruff>=0.4; extra == "dev"
Requires-Dist: mypy>=1.9; extra == "dev"

# PlayTow

Unified facade over the PlayTow scientific computing ecosystem.

```python
import playtow

# Chemistry / periodic table
entry = playtow.periodica.Get("Fe")

# Physics constants and predictions
const = playtow.metaphysica.Get("m_planck")

# EML expression trees
from eml_math import EMLPoint
pt = EMLPoint(1.0, 2.0)

# Spectral flow
from eml_spectral import spectral_flow
traj = spectral_flow(pt, steps=10)
```

## Installation

```bash
pip install playtow
```

## Sub-libraries

| Package | Description |
|---|---|
| [periodica](https://pypi.org/project/periodica/) | Periodic table, molecules, alloys, proteins — 424 datasheets |
| [metaphysica](https://pypi.org/project/metaphysica/) | Physics constants, quark predictions, G₂ manifold, CKM matrix |
| [eml-math](https://pypi.org/project/eml-math/) | EML expression trees, formula discovery, Minkowski / Euclidean ops |
| [eml-spectral](https://pypi.org/project/eml-spectral/) | Clifford algebras, octonions, E7/E8, GR metrics, spectral flow |

All sub-libraries are lazy-loaded — importing `playtow` adds no startup cost.
