├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── pymp.rst ├── pymp ├── __init__.py ├── config.py └── shared.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── run_unittests.py └── unittests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE.txt 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pymp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/docs/pymp.rst -------------------------------------------------------------------------------- /pymp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/pymp/__init__.py -------------------------------------------------------------------------------- /pymp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/pymp/config.py -------------------------------------------------------------------------------- /pymp/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/pymp/shared.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/run_unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/tests/run_unittests.py -------------------------------------------------------------------------------- /tests/unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/classner/pymp/HEAD/tests/unittests.py --------------------------------------------------------------------------------