-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.09 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.09 KB
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
from setuptools import setup, find_packages
project_description = """
ROMAN is a view-invariant global localization method that maps open-set objects and uses the
geometry, shape, and semantics of objects to find the transformation between a current pose and
previously created object map. This enables loop closure between robots even when a scene is
observed from opposite views.
"""
setup(
name='roman',
version='0.1.5',
description=project_description,
url='https://acl.mit.edu/roman',
author='Mason Peterson, Lucas Jia, Yulun Tian, and Andy Li',
author_email='masonbp@mit.edu, yixuany@mit.edu, yut034@ucsd.edu, andyli27@mit.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy<2',
'scipy',
'matplotlib',
'gtsam',
'scikit-image',
'open3d>=0.18.0',
'yolov7-package',
'shapely',
'opencv-python>=4.6.0',
'pyyaml',
'torch>=2.4.0',
'torchvision>=0.19.0',
'setuptools<70',
'robotdatapy>=1.1.8',
'gdown',
'transformers'
],
)