forked from GFZ/arosics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
131 lines (116 loc) · 4.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# AROSICS - Automated and Robust Open-Source Image Co-Registration Software
#
# Copyright (C) 2017-2024
# - Daniel Scheffler (GFZ Potsdam, [email protected])
# - Helmholtz Centre Potsdam - GFZ German Research Centre for Geosciences Potsdam,
# Germany (https://www.gfz-potsdam.de/)
#
# This software was developed within the context of the GeoMultiSens project funded
# by the German Federal Ministry of Education and Research
# (project grant code: 01 IS 14 010 A-C).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
version = {}
with open("arosics/version.py") as version_file:
exec(version_file.read(), version)
req = [
'cartopy',
'cmocean',
'folium>=0.6.0,!=0.12.0',
# 'gdal',
'geoarray>=0.15.0',
'geojson',
'geopandas',
'joblib>=1.3.0',
'matplotlib',
'numpy',
'pandas',
'plotly',
'pykrige',
'pyproj>2.2.0',
'py_tools_ds>=0.18.0',
'scikit-image>=0.21.0',
'scikit-learn',
'scipy>=1.7.0',
'shapely',
]
req_setup = [
'setuptools',
'setuptools-git'
]
req_intplot = ['holoviews', 'ipython', 'nbformat']
req_test = ['pytest', 'pytest-cov', 'pytest-reporter-html1', 'urlchecker'] + req_intplot
req_doc = ['sphinx-argparse', 'sphinx_rtd_theme', 'sphinx-autodoc-typehints']
req_lint = ['flake8', 'pycodestyle', 'pydocstyle']
req_dev = req_setup + req_test + req_doc + req_lint
setup(
author="Daniel Scheffler",
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
description="An Automated and Robust Open-Source Image Co-Registration Software for Multi-Sensor Satellite Data",
entry_points={
'console_scripts': [
'arosics=arosics.arosics_cli:main',
],
},
extras_require={
"interactive_plotting": req_intplot,
"doc": req_doc,
"test": req_test,
"lint": req_lint,
"dev": req_dev
},
include_package_data=True,
install_requires=req,
keywords=['arosics', 'image co-registration', 'geometric pre-processing', 'remote sensing', 'sensor fusion'],
license="Apache-2.0",
long_description=readme,
long_description_content_type='text/x-rst',
name='arosics',
packages=find_packages(exclude=['tests*']),
project_urls={
"Source code": "https://git.gfz-potsdam.de/danschef/arosics",
"Issue Tracker": "https://git.gfz-potsdam.de/danschef/arosics/-/issues",
"Documentation": "https://danschef.git-pages.gfz-potsdam.de/arosics/doc/",
"Change log": "https://git.gfz-potsdam.de/danschef/arosics/-/blob/main/HISTORY.rst",
"Algorithm paper": "https://www.mdpi.com/2072-4292/9/7/676",
"Zenodo": "https://zenodo.org/record/5093940"
},
python_requires='>3.8',
setup_requires=req_setup,
test_suite='tests',
tests_require=req + req_test,
url='https://git.gfz-potsdam.de/danschef/arosics',
version=version['__version__'],
zip_safe=False,
)