Skip to content
Snippets Groups Projects
Commit f768ab41 authored by David Schäfer's avatar David Schäfer
Browse files

Merge branch 'setup.py' into 'develop'

update setup.py

Closes #349

See merge request !479
parents 67c9e5bf 84a4e433
No related branches found
No related tags found
6 merge requests!685Release 2.4,!684Release 2.4,!567Release 2.2.1,!566Release 2.2,!501Release 2.1,!479update setup.py
Pipeline #96640 passed with stages
in 4 minutes and 57 seconds
......@@ -35,6 +35,13 @@ isort:
- pip install isort
- isort --check .
# check if we are able to build a wheel
wheel:
stage: test
script:
- pip install wheel
- pip wheel .
# Check compliance with the REUSE specification
reuse_compliance:
stage: test
......
......@@ -21,29 +21,29 @@ with open("README.md", "r") as fh:
setup(
name="saqc",
version=version,
author="Bert Palm, David Schaefer, Peter Luenenschloss, Lennart Schmidt",
author="Bert Palm, David Schaefer, Florian Gransee, Peter Luenenschloss",
author_email="david.schaefer@ufz.de",
description="Data quality checking and processing tool/framework",
description="A timeseries data quality control and processing tool/framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm-software/saqc",
packages=find_packages(exclude=("tests",)),
python_requires=">=3.7",
packages=find_packages(exclude=("tests", "docs")),
python_requires=">=3.8",
install_requires=[
"Click==8.0.*",
"dtw==1.4.*",
"matplotlib>=3.4,<3.6",
"numba>=0.54",
"numpy==1.21.5",
"outlier-utils==0.0.3",
"pyarrow==6.0.*",
"pandas==1.3.*",
"scikit-learn==1.0.*",
"scipy==1.7.*",
"typing_extensions==4.*",
"seaborn==0.11.*",
"Click",
"dtw",
"matplotlib>=3.4",
"numba",
"numpy",
"outlier-utils",
"pyarrow",
"pandas>=1.2",
"scikit-learn",
"scipy",
"typing_extensions",
"seaborn",
],
license_files=("LICENSE.md",),
license_files=("LICENSE.md", "LICENSES/GPL-3.0-or-later.txt"),
entry_points={
"console_scripts": ["saqc=saqc.__main__:main"],
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment