fancy_gym/setup.py

64 lines
2.1 KiB
Python
Raw Normal View History

2022-07-06 09:05:35 +02:00
import itertools
from pathlib import Path
from typing import List
2022-07-06 09:05:35 +02:00
2022-07-07 10:47:04 +02:00
from setuptools import setup, find_packages
2020-08-28 15:48:34 +02:00
2022-07-06 09:05:35 +02:00
# Environment-specific dependencies for dmc and metaworld
extras = {
2022-07-14 09:45:35 +02:00
"dmc": ["dm_control>=1.0.1"],
"metaworld": ["metaworld @ git+https://github.com/rlworkgroup/metaworld.git@3ced29c8cee6445386eba32e92870d664ad5e6e3#egg=metaworld",
2022-08-18 09:04:38 +02:00
'mujoco-py<2.2,>=2.1',
'gym>=0.15.4',
'numpy>=1.18',
'scipy>=1.4.1',
2022-08-18 09:04:38 +02:00
],
2022-07-06 09:05:35 +02:00
}
# All dependencies
all_groups = set(extras.keys())
extras["all"] = list(set(itertools.chain.from_iterable(map(lambda group: extras[group], all_groups))))
def find_package_data(extensions_to_include: List[str]) -> List[str]:
envs_dir = Path("fancy_gym/envs/mujoco")
package_data_paths = []
for extension in extensions_to_include:
package_data_paths.extend([str(path)[10:] for path in envs_dir.rglob(extension)])
return package_data_paths
2021-06-24 16:51:38 +02:00
setup(
2022-07-14 09:45:35 +02:00
author='Fabian Otto, Onur Celik',
name='fancy_gym',
version='0.3',
2022-07-07 10:47:04 +02:00
classifiers=[
2022-10-20 10:05:22 +02:00
'Development Status :: 3 - Alpha',
2022-10-18 08:51:10 +02:00
'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',
2022-07-07 10:47:04 +02:00
],
extras_require=extras,
2021-06-24 16:51:38 +02:00
install_requires=[
'gymnasium>=0.26.0'
2023-01-17 11:18:30 +01:00
'mp_pytorch<=0.1.3'
2021-06-24 16:51:38 +02:00
],
2022-07-13 15:10:43 +02:00
packages=[package for package in find_packages() if package.startswith("fancy_gym")],
2022-07-07 10:47:04 +02:00
package_data={
"fancy_gym": find_package_data(extensions_to_include=["*.stl", "*.xml"])
2022-07-07 10:47:04 +02:00
},
2022-07-14 08:25:25 +02:00
python_requires=">=3.7",
2022-07-13 15:10:43 +02:00
url='https://github.com/ALRhub/fancy_gym/',
2022-10-18 08:51:10 +02:00
license='MIT license',
2021-06-24 16:51:38 +02:00
author_email='',
2022-07-14 08:25:25 +02:00
description='Fancy Gym: Unifying interface for various RL benchmarks with support for Black Box approaches.'
2021-06-24 16:51:38 +02:00
)