Skip to content

Commit ce9a848

Browse files
committed
Adding dependencies
1 parent efaada8 commit ce9a848

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

gymie/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from gymie.api import override
33
from gymie.exceptions import *
44

5-
__version__ = '0.0.1'
5+
__version__ = '0.1.0'

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,24 @@
55

66
setuptools.setup(
77
name="gymie",
8-
version="0.0.1",
8+
version="0.1.0",
99
author="Francisco Ramos",
1010
author_email="francisco.ramos@researchlab.ai",
1111
description="WebSocket server that exposes an API to train AI agents on OpenAI Gym and gym-api-like Environments",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/jscriptcoder/Gymie-Server",
1515
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+
},
1626
classifiers=[
1727
"Programming Language :: Python :: 3.6",
1828
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)