Skip to content
Snippets Groups Projects
Commit f7d601f3 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

make saqc installable as python package

parents 18b51f9a 6a524e1c
No related branches found
No related tags found
No related merge requests found
setup.py 0 → 100644
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(),
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",
long_description=long_description,
# long_description_content_type="text/markdown",
url="https://git.ufz.de/rdm/saqc",
packages=['saqc'],
install_requires=[
'pandas',
'numpy',
'numba',
'PyYAML',
'matplotlib'
],
license='RDM Team - UFZ',
)
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