-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
34 lines (31 loc) · 1018 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
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.1',
description=project_description,
url='url',
author='Mason Peterson, Lucas Jia, and Yulun Tian',
license='MIT',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'matplotlib',
'gtsam',
'scikit-image',
'open3d==0.18.0',
'yolov7-package',
'shapely',
'opencv-python',
'pyyaml',
'fastsam @ git+ssh://[email protected]/CASIA-IVA-Lab/FastSAM@4d153e9',
'robotdatapy>=1.0.1'
],
)