Metadata-Version: 2.1
Name: bonsai-gym
Version: 2.0.8
Summary: A python library for integrating Bonsai BRAIN     with Open AI Gym environments.
Home-page: https://bons.ai
Author: Bonsai, Inc.
Author-email: opensource@bons.ai
License: BSD
Keywords: bonsai
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Natural Language :: English
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Requires-Dist: bonsai-ai (>=2.0.0)
Requires-Dist: gym (==0.9.7)

Bonsai Gym Common
=================
A python library for integrating Bonsai BRAIN with Open AI Gym environments.


Installation
------------

Install the latest stable from PyPI:

`$ pip install bonsai-gym`


Usage
-----
Once installed, import `bonsai_gym` in order to access
base class `GymSimulator`, which implements all of the
environment-independent Bonsai SDK integrations necessary to
train a Bonsai BRAIN to play an OpenAI Gym simulator.

::

    import gym

    from bonsai_gym import GymSimulator

    class CartPoleSimulator(GymSimulator):
        # Perform cartpole-specific integrations here.


