Metadata-Version: 2.1
Name: einsum
Version: 0.2.1
Summary: Experimental implementation of torch/onnx einsum
Home-page: https://github.com/sorenlassen/einsum-experiment
License: MIT
Author: Soren Lassen
Author-email: sorenlassen@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown

# einsum
> Experimental implementation of torch/onnx einsum

## Install

```bash
pip3 install -U einsum
```

Or develop locally:

```bash
https://github.com/sorenlassen/einsum-experiment ~/einsum
cd ~/einsum
python3 setup.py develop
```

## Usage

```py
import einsum

print('TODO')
```

## Tests

Run `einsum`'s test suite:
```bash
pip3 install pytest
pytest
```

Type check with mypy:
```bash
pip3 install mypy
python3 -m mypy src/einsum/lib.py
```

## Release

To publish a new release to pypi:
```bash
pip3 install python-semantic-release

# bump the version number and push a new git tag.
semantic-release publish

# publish to pypi.
poetry build
poetry publish
```

## About
`pyproject.toml` was generated with [mkpylib](https://github.com/shawwn/scrap/blob/master/mkpylib).
`setup.py` was generated with [poetry-gen-setup-py](https://github.com/shawwn/scrap/blob/master/poetry-gen-setup-py).


