-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (43 loc) · 1.43 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
#!/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='aruco-estimator',
version='1.1.10',
description='Aruco Scale Factor Estimation',
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
author='Lukas Meyer',
author_email='lukas.meyer@fau.de',
url="https://github.com/meyerls/aruco-estimator",
packages=['aruco_estimator'],
install_requires=["numpy",
#"colmap_wrapper==1.1.5",
"matplotlib",
"open3d",
"opencv-contrib-python==4.6.0.66",
"pyquaternion",
#"pycolmap",
"tqdm",
"wget",
"pyexiftool"], # external packages as dependencies
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False,
)