From ed9821afa622df02d33d58c05c6b32fcdea351d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Wed, 23 Mar 2016 12:06:28 +0100 Subject: [PATCH] Bit more overview/intro in the readme --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index ca90da1..939580e 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,29 @@ Blender Cloud addon =================== +This addon is a *proof of concept* demonstrating the following features: + +* Using the [Blender ID addon](https://github.com/fsiddi/blender-id-addon) + to authenticate against [Blender ID](https://www.blender.org/id/) +* Using the [Pillar SDK](https://github.com/armadillica/pillar-python-sdk) + to browse the Blender Cloud texture library from within Blender. +* Using Python's [asyncio](https://docs.python.org/3/library/asyncio.html) + module to provide asynchronous execution of Python code in Blender. + + +Installation +------------ + Installation requires the [Pillar SDK](https://github.com/armadillica/pillar-python-sdk) to be installed. It can either be installed regularly somewhere on the Python PATH, or be stored as a [wheel file](http://pythonwheels.com/) at `blender_cloud/wheels/pillar_sdk-*.whl`. +Installation also requires wheels for [CacheControl](https://pypi.python.org/pypi/CacheControl) +and [lockfile](https://pypi.python.org/pypi/lockfile) to be placed in +`blender_cloud/wheels`, or installed somewhere where Blender can find +them. + Design ------