-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 985 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 985 Bytes
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
"""Installation script for the 'robotic_world_model_lite' python package."""
from setuptools import setup
# Minimum dependencies required prior to installation
INSTALL_REQUIRES = [
"torch>=2.7",
"rsl-rl-lib @ git+https://github.com/leggedrobotics/rsl_rl_rwm.git@main",
"wandb",
"pandas",
]
PYTORCH_INDEX_URL = ["https://download.pytorch.org/whl/cu128"]
# Installation operation
setup(
name="rwm_lite",
author="Chenhao Li",
maintainer="Chenhao Li",
url="https://github.com/leggedrobotics/robotic_world_model_lite",
version=0.1,
description="The lightweight robotic world model for quick prototyping.",
keywords=["robotic world model", "reinforcement learning"],
include_package_data=True,
python_requires=">=3.10",
install_requires=INSTALL_REQUIRES,
dependency_links=PYTORCH_INDEX_URL,
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
],
zip_safe=False,
)