File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 2
2
from gymie .api import override
3
3
from gymie .exceptions import *
4
4
5
- __version__ = '0.0.1 '
5
+ __version__ = '0.1.0 '
Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "gymie" ,
8
- version = "0.0.1 " ,
8
+ version = "0.1.0 " ,
9
9
author = "Francisco Ramos" ,
10
10
author_email = "francisco.ramos@researchlab.ai" ,
11
11
description = "WebSocket server that exposes an API to train AI agents on OpenAI Gym and gym-api-like Environments" ,
12
12
long_description = long_description ,
13
13
long_description_content_type = "text/markdown" ,
14
14
url = "https://github.com/jscriptcoder/Gymie-Server" ,
15
15
packages = setuptools .find_packages (),
16
+ install_requires = [
17
+ 'eventlet==0.28.0' ,
18
+ 'gym==0.17.3' ,
19
+ 'uuid==1.30' ,
20
+ ],
21
+ extras_require = {
22
+ 'box2d' : ['box2d-py==2.3.8' ],
23
+ 'retro' : ['gym-retro==0.8.0' ],
24
+ 'unity' : ['mlagents-envs==0.20.0' , 'gym-unity==0.20.0' ],
25
+ },
16
26
classifiers = [
17
27
"Programming Language :: Python :: 3.6" ,
18
28
"License :: OSI Approved :: MIT License" ,
You can’t perform that action at this time.
0 commit comments