├── .gitignore ├── MANIFEST.in ├── README.md ├── bin ├── bluerun ├── qconvert └── taskrun ├── etc ├── blueprint.cfg ├── env_wrapper.sh ├── postrun.sh └── prerun.sh ├── lib └── blueprint │ ├── __init__.py │ ├── app.py │ ├── archive.py │ ├── backend │ ├── __init__.py │ ├── plowrun.py │ └── test.py │ ├── conf.py │ ├── exception.py │ ├── io.py │ ├── job.py │ ├── layer.py │ ├── modules │ ├── __init__.py │ ├── blender.py │ ├── iconvert.py │ ├── maya.py │ ├── nuke.py │ ├── setup │ │ └── blender_setup.py │ └── shell.py │ └── plugins │ ├── __init__.py │ ├── plow_outputs.py │ └── test_plugin.py ├── setup.py └── tests ├── __init__.py ├── common.py ├── scenes └── sphere_v1.mb ├── scripts ├── maya.bps └── sleep.bps ├── setup.py ├── test_all.py ├── test_app.py ├── test_archive.py ├── test_conf.py ├── test_job.py ├── test_layer.py ├── test_module_blender.py ├── test_module_maya.py └── test_taskrun.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/README.md -------------------------------------------------------------------------------- /bin/bluerun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/bin/bluerun -------------------------------------------------------------------------------- /bin/qconvert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/bin/qconvert -------------------------------------------------------------------------------- /bin/taskrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/bin/taskrun -------------------------------------------------------------------------------- /etc/blueprint.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/etc/blueprint.cfg -------------------------------------------------------------------------------- /etc/env_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/etc/env_wrapper.sh -------------------------------------------------------------------------------- /etc/postrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/etc/postrun.sh -------------------------------------------------------------------------------- /etc/prerun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/etc/prerun.sh -------------------------------------------------------------------------------- /lib/blueprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/__init__.py -------------------------------------------------------------------------------- /lib/blueprint/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/app.py -------------------------------------------------------------------------------- /lib/blueprint/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/archive.py -------------------------------------------------------------------------------- /lib/blueprint/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/blueprint/backend/plowrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/backend/plowrun.py -------------------------------------------------------------------------------- /lib/blueprint/backend/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/backend/test.py -------------------------------------------------------------------------------- /lib/blueprint/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/conf.py -------------------------------------------------------------------------------- /lib/blueprint/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/exception.py -------------------------------------------------------------------------------- /lib/blueprint/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/io.py -------------------------------------------------------------------------------- /lib/blueprint/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/job.py -------------------------------------------------------------------------------- /lib/blueprint/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/layer.py -------------------------------------------------------------------------------- /lib/blueprint/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/blueprint/modules/blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/blender.py -------------------------------------------------------------------------------- /lib/blueprint/modules/iconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/iconvert.py -------------------------------------------------------------------------------- /lib/blueprint/modules/maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/maya.py -------------------------------------------------------------------------------- /lib/blueprint/modules/nuke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/nuke.py -------------------------------------------------------------------------------- /lib/blueprint/modules/setup/blender_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/setup/blender_setup.py -------------------------------------------------------------------------------- /lib/blueprint/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/modules/shell.py -------------------------------------------------------------------------------- /lib/blueprint/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/blueprint/plugins/plow_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/plugins/plow_outputs.py -------------------------------------------------------------------------------- /lib/blueprint/plugins/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/lib/blueprint/plugins/test_plugin.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/scenes/sphere_v1.mb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/scenes/sphere_v1.mb -------------------------------------------------------------------------------- /tests/scripts/maya.bps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/scripts/maya.bps -------------------------------------------------------------------------------- /tests/scripts/sleep.bps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/scripts/sleep.bps -------------------------------------------------------------------------------- /tests/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/setup.py -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /tests/test_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_archive.py -------------------------------------------------------------------------------- /tests/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_conf.py -------------------------------------------------------------------------------- /tests/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_job.py -------------------------------------------------------------------------------- /tests/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_layer.py -------------------------------------------------------------------------------- /tests/test_module_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_module_blender.py -------------------------------------------------------------------------------- /tests/test_module_maya.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_module_maya.py -------------------------------------------------------------------------------- /tests/test_taskrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chadmv/blueprint/HEAD/tests/test_taskrun.py --------------------------------------------------------------------------------