├── .gitignore ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── Makefile.python ├── README.rst ├── TODO.txt ├── VERSION.txt ├── morph ├── __init__.py └── test.py ├── setup.cfg ├── setup.py └── test-requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PKGNAME = morph 2 | include Makefile.python 3 | -------------------------------------------------------------------------------- /Makefile.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/Makefile.python -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/TODO.txt -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.1.5 2 | -------------------------------------------------------------------------------- /morph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/morph/__init__.py -------------------------------------------------------------------------------- /morph/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/morph/test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/morph/HEAD/test-requirements.txt --------------------------------------------------------------------------------