├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── manta.png ├── manta ├── __init__.py ├── cluster.py ├── cyjson.py ├── demo.graphml ├── flow.py ├── layout.py ├── main.py └── reliability.py ├── meta.yaml ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py └── test_manta.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include manta/demo.graphml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/README.md -------------------------------------------------------------------------------- /manta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta.png -------------------------------------------------------------------------------- /manta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manta/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/cluster.py -------------------------------------------------------------------------------- /manta/cyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/cyjson.py -------------------------------------------------------------------------------- /manta/demo.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/demo.graphml -------------------------------------------------------------------------------- /manta/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/flow.py -------------------------------------------------------------------------------- /manta/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/layout.py -------------------------------------------------------------------------------- /manta/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/main.py -------------------------------------------------------------------------------- /manta/reliability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/manta/reliability.py -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/meta.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_manta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramellose/manta/HEAD/tests/test_manta.py --------------------------------------------------------------------------------