-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (45 loc) · 1.53 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright (c) 2022 Lukas Meyer
Licensed under the MIT License.
See LICENSE file for more information.
"""
# Built-in/Generic Imports
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'Readme.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='colmap_wrapper',
version='1.1.5',
description='COLMAP Wrapper',
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
author='Lukas Meyer',
author_email='[email protected]',
url="https://github.com/meyerls/colmap-wrapper",
packages=['colmap_wrapper.dataloader',
'colmap_wrapper.visualization',
'colmap_wrapper.data',
'colmap_wrapper.gps',
'colmap_wrapper.reconstruction'],
install_requires=["numpy",
"pyexiftool",
"open3d",
"pyquaternion",
"matplotlib",
"tqdm",
"wget",
"pycolmap"
], # external packages as dependencies
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)