-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsetup.py
35 lines (31 loc) · 866 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from pathlib import Path
from setuptools import find_packages, setup
long_description = (Path(__file__).parent / "README.md").read_text()
core_requirements = [
"gymnasium==0.29.1",
"rich==13.7.1",
"tqdm==4.66.4",
"ipdb==0.13.13",
"mujoco==3.1.6",
"mujoco-mjx==3.1.6",
"dm_control==1.0.20",
"imageio==2.34.2",
"gymnax==0.0.8",
"brax==0.9.4",
"torch==2.3.1",
"opencv-python==4.10.0.84",
"natsort==8.4.0",
]
setup(
name="humanoid_bench",
version="0.2",
author="RLL at UC Berkeley",
url="https://github.com/carlosferrazza/humanoid-bench",
description="Humanoid Benchmark",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=True,
python_requires=">3.7",
install_requires=core_requirements,
)