Metadata-Version: 2.1
Name: pytri
Version: 0.4.0
Summary: Visualize using substrate. For Jupyter notebooks.
Home-page: UNKNOWN
Author: Jordan Matelsky
Author-email: jordan@matelsky.com
License: Apache 2.0
Download-URL: https://github.com/iscoe/pytri/tarball/0.4.0
Keywords: viz,substrate,3D,visualization
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: mypy
Requires-Dist: typing
Requires-Dist: nose
Requires-Dist: coverage
Requires-Dist: nose-progressive
Requires-Dist: IPython
Requires-Dist: requests
Requires-Dist: networkx
Requires-Dist: numpy
Requires-Dist: pillow

<p align="center">
 <img align="center" alt="substrate" src="./logo.svg" width="50%" />
 <h1 align="center" fontsize="3em">pytri</h1>
</p>

<p align="center">
    <span>A python wrapper for <a href="https://github.com/jhuapl-boss/substrate">substrate</a>.</span><br />
    <a href="https://circleci.com/gh/iscoe/pytri"><img alt="CircleCI" src="https://circleci.com/gh/iscoe/pytri.svg?style=svg" /></a>
    <a href="https://badge.fury.io/py/pytri"><img src="https://badge.fury.io/py/pytri.svg" alt="PyPI version" height="18"></a>
</p>

## Installation and Configuration

### New Hotness:
```shell
pip install -U pytri
```

### Old and Busted:

- Clone the repository.
```shell
git clone https://github.com/iscoe/pytri.git
```
- Install all dependencies.
```shell
pip3 install -r requirements.txt
pip3 install -U .
```

## Usage

```python
from pytri import pytri

p = pytri()

p.axes()
p.scatter([[1, 2, 3], [4, 5, 6]])
p.show()
```


