forked from localdevices/ODMax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.66 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
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="odmax",
description="odmax extracts still images from GoPro 360 camera types, including GNSS location and time information",
long_description=readme + "\n\n",
url="https://github.com/localdevices/ODMax",
author="Hessel Winsemius and Stephen Mather",
author_email="[email protected]",
packages=find_packages(),
package_dir={"odmax": "odmax"},
test_suite="tests",
use_scm_version=True,
setup_requires=["setuptools_scm"],
python_requires=">=3.8",
install_requires=[
"pip",
"opencv-python-headless",
"PyExifTool",
"py360convert==0.1.0"
],
extras_require={
"dev": ["pytest", "pytest-cov"],
"optional": [],
},
scripts=["scripts/odmax"],
entry_points="""
""",
include_package_data=True,
license="AGPLv3",
zip_safe=False,
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Photogrammetry",
"License :: AGPLv3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="GoPro, OpenDroneMap",
)