-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
112 lines (99 loc) · 3.68 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# spechomo, Spectral homogenization of multispectral satellite data
#
# Copyright (C) 2019-2021
# - 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Please note the following exception: `spechomo` depends on tqdm, which is
# distributed under the Mozilla Public Licence (MPL) v2.0 except for the files
# "tqdm/_tqdm.py", "setup.py", "README.rst", "MANIFEST.in" and ".gitignore".
# Details can be found here: https://github.com/tqdm/tqdm/blob/master/LICENCE.
#
# 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("spechomo/version.py") as version_file:
exec(version_file.read(), version)
req = [
'dill',
'geoarray>=0.15.0',
'matplotlib',
'natsort',
'nested_dict',
'numpy',
'pandas',
'pyrsr>=0.5.0',
'pyyaml',
'scikit-learn>=0.23.2',
'scipy',
'seaborn',
'specclassify>=0.3.0',
'tabulate',
'tqdm',
]
req_setup = ['setuptools-git'] # needed for package_data version-controlled by GIT
req_test = ['pytest', 'pytest-cov', 'pytest-reporter-html1', 'urlchecker']
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 :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description="Spectral homogenization of multispectral satellite data.",
extras_require={
"doc": req_doc,
"test": req_test,
"lint": req_lint,
"dev": req_dev
},
install_requires=req,
license="Apache-2.0",
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
include_package_data=True,
package_data={'spechomo': ['options_default.yaml',
# 'resources/**/**/*'
]},
keywords=['spechomo', 'spectral homogenization', 'sensor fusion', 'remote sensing'],
name='spechomo',
packages=find_packages(include=['spechomo'], exclude=['tests']),
setup_requires=req_setup,
test_suite='tests',
tests_require=req_test,
url='https://git.gfz-potsdam.de/geomultisens/spechomo',
version=version['__version__'],
zip_safe=False,
)