Metadata-Version: 1.2
Name: bonsai-gym
Version: 2.0.5
Summary: A python library for integrating Bonsai BRAIN     with Open AI Gym environments.
Home-page: http://bons.ai
Author: Bonsai, Inc.
Author-email: opensource@bons.ai
License: BSD
Description: 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.
        
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.*
