├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.ipynb ├── README.md ├── ordo ├── __init__.py └── ordo.js ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .ipynb_checkpoints 3 | .pypirc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/README.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/README.md -------------------------------------------------------------------------------- /ordo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/ordo/__init__.py -------------------------------------------------------------------------------- /ordo/ordo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/ordo/ordo.js -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.ipynb 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nbgallery/ordo/HEAD/setup.py --------------------------------------------------------------------------------