Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
],
)