├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docker └── Dockerfile ├── setup.py ├── shim └── __init__.py ├── test.py └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include bpy_lambda * 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/setup.py -------------------------------------------------------------------------------- /shim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/shim/__init__.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/test.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcongdon/bpy_lambda/HEAD/test.sh --------------------------------------------------------------------------------