forked from facebookresearch/home-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 818 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
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from setuptools import find_packages, setup
install_requires = [
"numpy",
"home-robot",
"habitat-sim",
# Installing habitat-lab directly from git (does not work due to bug in [email protected]):
# "habitat @ git+ssh://[email protected]/facebookresearch/[email protected]",
# Latest habitat version (not used due to Hydra migration):
# "habitat-lab @ git+ssh://[email protected]/facebookresearch/habitat-lab@stable&subdirectory=habitat-lab",
]
setup(
name="home-robot-sim",
version="0.1.0",
packages=find_packages(where="."),
install_requires=install_requires,
include_package_data=True,
)