Metadata-Version: 2.1
Name: finch-tensor
Version: 0.1.2
Summary: 
Author: Willow Ahrens
Author-email: willow.marie.ahrens@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: juliacall (>=0.9.15,<0.10.0)
Requires-Dist: juliapkg (>=0.1.10,<0.2.0)
Description-Content-Type: text/markdown

# Finch

This is the beginnings of a sparse tensor library for Python, backed by the
[Finch.jl](https://github.com/willow-ahrens/Finch.jl) tensor compiler.

## Installation

Finch is available on PyPi, and can be installed with pip:
```bash
pip install finch
```

## Contributing

### Packaging

Finch uses [poetry](https://python-poetry.org/) for packaging.

### Testing

Finch uses [pytest](https://docs.pytest.org/en/latest/) for testing. To run the
tests:

```bash
poetry run pytest
```

