forked from localdevices/odk2odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 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
57
#!/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="odk2odm",
description="odk2odm provides functionalities to transfer data from an ODK server to a (Web)ODM server",
long_description=readme + "\n\n",
url="https://github.com/localdevices/odk2odm.git",
author="Ivan Gayton",
author_email="[email protected]",
packages=find_packages(),
package_dir={"odk2odm": "odk2odm"},
test_suite="tests",
use_scm_version=True,
setup_requires=["setuptools_scm"],
python_requires=">=3.8",
install_requires=[
"requests",
"requests_toolbelt",
"exifread",
"Pillow",
"openpyxl",
"qrcode",
],
extras_require={
"dev": ["pytest", "pytest-cov"],
"optional": [],
},
scripts=[],
entry_points="""
""",
include_package_data=True,
license="GPLv3",
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 :: OSI Approved :: ???",
"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="OpenDataKit, OpenDroneMap",
)