-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 803 Bytes
/
setup.py
File metadata and controls
35 lines (34 loc) · 803 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
34
35
from setuptools import find_packages, setup
setup(
name='falcon',
version='0.0.1',
license="MIT",
packages=find_packages(),
description='FALCON: Learning Force-Adaptive Humanoid Loco-Manipulation',
url="https://github.com/LeCAR-Lab/FALCON", # Update this with your actual repository URL
python_requires=">=3.8",
install_requires=[
"hydra-core>=1.2.0",
"numpy==1.23.5",
"rich",
"ipdb",
"matplotlib",
"termcolor",
"wandb",
"plotly",
"tqdm",
"loguru",
"meshcat",
"pynput",
"scipy",
"tensorboard",
"onnx",
"onnxruntime",
"opencv-python",
"joblib",
"easydict",
"lxml",
"numpy-stl",
"open3d"
]
)