Skip to content

Commit

Permalink
Pull pycolmap from pypi instead of building from source
Browse files Browse the repository at this point in the history
  • Loading branch information
sarlinpe committed Jan 1, 2022
1 parent faaac10 commit 8ee27f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ tqdm
matplotlib
scipy
h5py
git+https://github.com/mihaidusmanu/pycolmap
pycolmap
14 changes: 2 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,8 @@
readme = f.read()
with open(str(root / 'hloc/__init__.py'), 'r') as f:
version = eval(f.read().split('__version__ = ')[1].split()[0])

dependencies = [
'torch>=1.1',
'torchvision>=0.3',
'opencv-python',
'numpy',
'tqdm',
'matplotlib',
'scipy',
'h5py',
'pycolmap @ git+https://github.com/mihaidusmanu/pycolmap',
]
with open(str(root / 'requirements.txt'), 'r') as f:
dependencies = f.read().split('\n')

setup(
name='hloc',
Expand Down

0 comments on commit 8ee27f7

Please sign in to comment.