Metadata-Version: 2.1
Name: gym-trajectory
Version: 0.1
Summary: Custom environment for OpenAI gym
Home-page: https://github.com/DaKup/gym-trajectory
Author: Daniel C. Kup
Author-email: danielc@gmail.com
License: UNKNOWN
Description: # gym-trajectory
        Custom environment for OpenAI gym
        
        N-dimensional trajectory
        
        
        ```py
        import gym
        import gym_trajectory
        
        env = gym.make('Trajectory-v0')
        observation = env.reset()
        
        while True:
            (observation, reward, done, info) = env.step(env.action_space.sample())
            env.render()
        ```
        
        ![](gifs/demo.gif)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
