A sweet and opinionated cookiecutter template for creating a Blender addon.
- Project is structured as a Python package.
- Easy inclusion of third party dependencies.
- Single command packaging.
Install the latest Cookiecutter if you haven't installed it yet.
$ pip install cookiecutter
Generate a Blender addon project:
$ cookiecutter https://github.com/joshuaskelly/cookiecutter-blender-addon.git
Then:
- Add custom functionality to
operators.pyorpanels.py. - Add any dependencies to the
requirements.txtRequirements file. - Package addon with $
python package.py - Installable addon zip file will be in the
distfolder.
