Metadata-Version: 2.3
Name: tennets
Version: 0.5.0
Summary: An experimental framework for generalized structuralism.
License: BSD-3-Clause
Author: Leonardo Cardillo
Author-email: leoncardi.contato@gmail.com
Requires-Python: >=3.12,<3.14
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: numpy (>=2.0,<3.0)
Requires-Dist: scipy (>=1.13,<2.0)
Description-Content-Type: text/markdown

# tennets

**tennets** is an experimental framework for generalized structuralism.

## Installation

```bash
pip install tennets
```

## Get Started

### Full implementation example

```Python
import tennets as tn
from tennets import RelationalDimension

unit_a = tn.RelativeUnit('UnitA')
unit_b = tn.RelativeUnit('UnitB')
unit_c = tn.RelativeUnit('UnitC')

chain_1 = tn.UnitChain((unit_a, unit_b))
chain_2 = tn.UnitChain((unit_a, unit_c))

chains = tn.UnitChains((chain_1, chain_2))
```

## License

BSD-3-Clause

