2023-10-12 12:34:37 +02:00
[ project ]
name = "fancy_gym"
version = "1.0"
description = "Fancy Gym: Unifying interface for various RL benchmarks with support for Black Box approaches."
readme = "README.md"
authors = [
{ name = "Fabian Otto" , email = "fabian.otto@uni-tuebingen.de" } ,
{ name = "Onur Celik" , email = "celik@kit.edu" } ,
{ name = "Dominik Roth" , email = "fancy_gym@dominik-roth.eu" } ,
{ name = "Hongyi Zhou" , email = "hongyi.zhou@kit.edu" }
]
2023-10-12 12:55:32 +02:00
license = { file = "LICENSE" }
2023-10-12 12:34:37 +02:00
classifiers = [
"Development Status :: 4 - Beta" ,
"Intended Audience :: Science/Research" ,
"License :: OSI Approved :: MIT License" ,
"Natural Language :: English" ,
"Operating System :: OS Independent" ,
"Topic :: Scientific/Engineering :: Artificial Intelligence" ,
"Programming Language :: Python :: 3" ,
"Programming Language :: Python :: 3.7" ,
"Programming Language :: Python :: 3.8" ,
"Programming Language :: Python :: 3.9" ,
"Programming Language :: Python :: 3.10" ,
"Programming Language :: Python :: 3.11"
]
2023-10-12 13:04:16 +02:00
requires-python = ">=3.7"
2023-10-12 12:34:37 +02:00
[ project . urls ]
Homepage = "https://github.com/ALRhub/fancy_gym/"
[ build-system ]
requires = [ "setuptools>=51.0.0" , "wheel" ]
build-backend = "setuptools.build_meta"
2023-10-12 13:04:16 +02:00
project . dependencies = [
"gymnasium>=0.26.0" ,
"mp_pytorch<=0.1.3"
]
2023-10-12 12:34:37 +02:00
[ project . optional-dependencies ]
dmc = [ "shimmy[dm-control]" , "Shimmy==1.0.0" ]
2023-10-12 12:46:53 +02:00
# PyPi does not allow external dependencies. Metaworld will have to be installed manually until Farama publishes up-to-date version of metaworld on PyPi.
#metaworld = ["metaworld @ git+https://github.com/Farama-Foundation/Metaworld.git@d155d0051630bb365ea6a824e02c66c068947439#egg=metaworld"]
2023-10-12 12:34:37 +02:00
box2d = [ "gymnasium[box2d]>=0.26.0" ]
mujoco = [ "mujoco==2.3.3" , "gymnasium[mujoco]>0.26.0" ]
mujoco-legacy = [ "mujoco-py>=2.1,<2.2" , "cython<3" ]
jax = [ "jax>=0.4.0" , "jaxlib>=0.4.0" ]
2023-10-12 12:46:53 +02:00
all = [
# include all the optional dependencies
"shimmy[dm-control]" ,
"Shimmy==1.0.0" ,
#"metaworld @ git+https://github.com/Farama-Foundation/Metaworld.git@d155d0051630bb365ea6a824e02c66c068947439#egg=metaworld",
"mujoco==2.3.3" ,
"gymnasium[box2d,mujoco]>=0.26.0" ,
"mujoco-py>=2.1,<2.2" ,
"cython<3" ,
"jax>=0.4.0" ,
"jaxlib>=0.4.0"
]
2023-10-12 12:34:37 +02:00
testing = [
"pytest" ,
# include all the optional dependencies as well
"shimmy[dm-control]" ,
"Shimmy==1.0.0" ,
2023-10-12 12:46:53 +02:00
#"metaworld @ git+https://github.com/Farama-Foundation/Metaworld.git@d155d0051630bb365ea6a824e02c66c068947439#egg=metaworld",
2023-10-12 12:34:37 +02:00
"mujoco==2.3.3" ,
2023-10-12 12:46:53 +02:00
"gymnasium[box2d,mujoco]>=0.26.0" ,
2023-10-12 12:34:37 +02:00
"mujoco-py>=2.1,<2.2" ,
"cython<3" ,
"jax>=0.4.0" ,
"jaxlib>=0.4.0"
]