├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _templates │ ├── module.rst_t │ └── package.rst_t ├── changelog.rst ├── conf.py ├── genindex.rst ├── index.rst ├── make.bat ├── py-modindex.rst └── readme.rst ├── requirements.txt ├── setup.cfg ├── setup.py └── src ├── module ├── Maya.env ├── icons │ └── .gitkeep ├── modules │ └── pyfrost.txt ├── plug-ins │ └── .gitkeep ├── scripts │ └── .gitkeep └── shelves │ └── .gitkeep └── pyfrost ├── __init__.py ├── api ├── __init__.py └── maya.py ├── compounds ├── __init__.py └── paint_delta.py └── main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/module.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/_templates/module.rst_t -------------------------------------------------------------------------------- /docs/_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/_templates/package.rst_t -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../CHANGELOG -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/genindex.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/py-modindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/docs/py-modindex.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. mdinclude:: ../README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module/Maya.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module/modules/pyfrost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/src/module/modules/pyfrost.txt -------------------------------------------------------------------------------- /src/module/plug-ins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module/shelves/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyfrost/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyfrost/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyfrost/api/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/src/pyfrost/api/maya.py -------------------------------------------------------------------------------- /src/pyfrost/compounds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyfrost/compounds/paint_delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/src/pyfrost/compounds/paint_delta.py -------------------------------------------------------------------------------- /src/pyfrost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BenoitGielly/pyfrost/HEAD/src/pyfrost/main.py --------------------------------------------------------------------------------