We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faaac10 commit 8ee27f7Copy full SHA for 8ee27f7
requirements.txt
@@ -6,4 +6,4 @@ tqdm
6
matplotlib
7
scipy
8
h5py
9
-git+https://github.com/mihaidusmanu/pycolmap
+pycolmap
setup.py
@@ -8,18 +8,8 @@
readme = f.read()
with open(str(root / 'hloc/__init__.py'), 'r') as f:
10
version = eval(f.read().split('__version__ = ')[1].split()[0])
11
-
12
-dependencies = [
13
- 'torch>=1.1',
14
- 'torchvision>=0.3',
15
- 'opencv-python',
16
- 'numpy',
17
- 'tqdm',
18
- 'matplotlib',
19
- 'scipy',
20
- 'h5py',
21
- 'pycolmap @ git+https://github.com/mihaidusmanu/pycolmap',
22
-]
+with open(str(root / 'requirements.txt'), 'r') as f:
+ dependencies = f.read().split('\n')
23
24
setup(
25
name='hloc',
0 commit comments