Metadata-Version: 2.1
Name: tensionflow
Version: 0.1.2
Summary: A Tensorflow framework for working with audio data.
Home-page: https://github.com/Curly-Mo/tensionflow
License: LGPL-3.0
Author: Colin Fahy
Author-email: colin@cfahy.com
Requires-Python: >=3.6,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: mypy
Requires-Dist: bidict (>=0.14,<0.15)
Requires-Dist: click (>=6.7,<7.0)
Requires-Dist: librosa (>=0.6,<0.7)
Requires-Dist: llvmlite (>=0.24.0,<0.25.0)
Requires-Dist: numpy (>=1.14,<2.0)
Requires-Dist: pandas (>=0.23,<0.24)
Requires-Dist: tensorboard (>=1.10,<2.0)
Requires-Dist: tf-nightly (==1.11.0.dev20180808)
Requires-Dist: typing (>=3.6,<4.0)
Description-Content-Type: text/markdown

# Tensionflow

[![Build Status](https://travis-ci.org/Curly-Mo/tensionflow.svg?branch=master)](https://travis-ci.org/Curly-Mo/tensionflow)
[![Coverage](https://coveralls.io/repos/github/Curly-Mo/tensionflow/badge.svg)](https://coveralls.io/github/Curly-Mo/tensionflow)
[![Documentation](https://readthedocs.org/projects/tensionflow/badge/?version=latest)](https://tensionflow.readthedocs.org/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/tensionflow.svg)](https://pypi.python.org/pypi/tensionflow)
[![PyPI Pythons](https://img.shields.io/pypi/pyversions/tensionflow.svg)](https://pypi.python.org/pypi/tensionflow)
[![License](https://img.shields.io/pypi/l/tensionflow.svg)](https://github.com/Curly-Mo/tensionflow/blob/master/LICENSE)

A Tensorflow framework for working with audio data.

## Features

* TODO

## Usage

* TODO

## Install

```console
pip install tensionflow
```

## Documentation
See https://tensionflow.readthedocs.org/en/latest/

## Development
```console
pip install poetry
cd tensionflow
poetry install
```
### Run
To run cli entrypoint:
```console
poetry run tensionflow --help
```

### Tests
```console
poetry run tox
```

### Docker
To run with docker
```console
docker build -t tensionflow .
docker run tensionflow:latest tensionflow --help
```

