-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 839 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 839 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
36
37
38
from setuptools import setup, find_packages
from setuptools.command.install import install as InstallCommand
class Install(InstallCommand):
"""Customized setuptools install command which uses pip."""
def run(self, *args, **kwargs):
import pip
pip.main(["install", "."])
InstallCommand.run(self, *args, **kwargs)
setup(
name="contact_demo",
install_requires=[
"open3d",
"filterpy",
"pygame", # For recording demo
"drake",
"easydict",
"wandb",
# Below is for IGE
"gym==0.26.1",
"torch",
"omegaconf",
"termcolor",
"hydra-core>=1.1",
"rl-games==1.5.2",
"pyvirtualdisplay",
],
version="0.0.1a",
cmdclass={
"install": Install,
},
packages=find_packages(),
)