-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (31 loc) · 976 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
import os
import sys
from setuptools import setup, find_packages
root_dir = os.path.dirname(os.path.realpath(__file__))
requirements_default = set(
["numpy",
f"isaacgym @ file://localhost{root_dir}/extern/isaacgym/python",
f"csdf @ file://localhost{root_dir}/extern/csdf",
"KNN-CUDA @ https://github.com/unlimblue/KNN_CUDA/releases/download/0.2/KNN_CUDA-0.2-py3-none-any.whl",
]
)
# requirements_isaacgym = set(
# [
# f"isaacgym @ file://localhost{root_dir}/extern/isaacgym/python", # Isaac Gym Simulation
# ]
# )
setup(
name='simenv',
version='0.1',
description='RAMP simulation environment',
author='Vasileios Vasilopoulos, Jinwook Huh',
author_email='[email protected]',
packages=find_packages(),
install_requires=list(requirements_default),
extras_require={
# "issacgym": list(requirements_isaacgym),
},
entry_points={
# add your console scripts and other executables here
},
)