Newer
Older
# SPDX-FileCopyrightText: 2021 Helmholtz-Zentrum für Umweltforschung GmbH - UFZ
#
# SPDX-License-Identifier: GPL-3.0-or-later
from distutils.util import convert_path
# read the version string from saqc without importing it. See the
# link for a more detailed description of the problem and the solution
# https://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package
vdict = {}
version_fpath = convert_path("saqc/version.py")
with open(version_fpath) as f:
exec(f.read(), vdict)
version = vdict["__version__"]
author="Bert Palm, David Schaefer, Peter Luenenschloss, Lennart Schmidt",
description="Data quality checking and processing tool/framework",
long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm-software/saqc",
packages=find_packages(exclude=("tests",)),
"Click==8.0.*",
"dtw==1.4.*",
"matplotlib>=3.4,<3.6",
"numba>=0.54",
"numpy==1.21.5",
license_files=("LICENSE.md",),
entry_points={
"console_scripts": ["saqc=saqc.__main__:main"],
},