diff --git a/README.md b/README.md index 338e2c6..c63287b 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,12 @@ This is the official python version of the Behavior3 library, originally written NOTE: this version still lacks specific documentation, but almost everything you need can be dig from the javascript-version. +## Installation + +Install from GitHub with: + + pip install git+https://github.com/behavior3/behavior3py.git + ## Main features diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5952607 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python +from distutils.core import setup + +setup( + name='behavior3', + version='0.1.0', + description='Behavior3', + packages=[ + 'b3', + 'b3.actions', + 'b3.composites', + 'b3.core', + 'b3.decorators', + ], +)