Metadata-Version: 2.1
Name: tensorscout
Version: 2.2.0
Summary: A Python library for tensor operations powered by parallel processing
License: MIT
Author: andrewrgarcia
Author-email: garcia.gtr@gmail.com
Requires-Python: >=3.8,<3.12
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
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: matplotlib (>=3.7.1,<4.0.0)
Requires-Dist: numpy (>=1.24.2,<2.0.0)
Requires-Dist: pathos (>=0.3.0,<0.4.0)
Requires-Dist: scipy (>=1.10.1,<2.0.0)
Requires-Dist: timethis (>=0.1.1,<0.2.0)
Description-Content-Type: text/markdown

# tensorscout

[![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/andrewrgarcia/tensorscout/main/LICENSE)
[![Documentation Status](https://readthedocs.org/projects/tensorscout/badge/?version=latest)](https://tensorscout.readthedocs.io/en/latest/?badge=latest)

A Python library for tensor operations powered by parallel processing.

<a href="https://tensorscout.readthedocs.io"><img src="https://raw.githubusercontent.com/andrewrgarcia/tensorscout/main/icon_scout.png" width="400"></a>


## Installation

```ruby
pip install tensorscout
```

It is recommended you run voxelmap using a `virtualenv` virtual environment. To do so, follow the below simple protocol to create the virtual environment, run it, and install the package there:

```ruby 
virtualenv venv
source venv/bin/activate
pip install tensorscout
```
To exit the virtual environment, simply type `deactivate`. To access it at any other time again, enter with the above `source venv...` command. 

