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

Update setup.py

parent b239ab41
No related branches found
No related tags found
No related merge requests found
Pipeline #2349 passed with stage
in 6 minutes and 31 seconds
......@@ -19,7 +19,6 @@ pytest==5.3.2
python-dateutil==2.8.1
python-intervals==1.10.0
pytz==2019.3
saqc===af472ef
scikit-learn==0.21.2
scipy==1.4.1
six==1.13.0
......
This diff is collapsed.
import subprocess
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="saqc",
version=subprocess.check_output("git describe --tags --always".split())
.decode()
.strip(),
version="1.0.0",
author="Bert Palm, David Schaefer, Peter Luenenschloss, Lennard Schmidt",
author_email="bert.palm@ufz.de, david.schaefer@ufz.de, peter.luenenschloss@ufz.de, lennart.schmidt@ufz.de",
description="automated quality assurance and control tool",
description="Data quality checking and processing framework",
long_description=long_description,
# long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm/saqc",
long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm-software/saqc",
packages=["saqc"],
install_requires=["pandas", "numpy", "numba", "PyYAML", "matplotlib"],
license="RDM Team - UFZ",
install_requires=[
"numpy",
"pandas",
"scipy",
"scikit-learn==0.21.2",
"numba",
"matplotlib",
"click",
"pyarrow",
"python-intervals",
],
license="GPLv3",
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