forked from successfactory/aqdef-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 1.01 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
"Setup script for the aqdefreader package"
import setuptools
import aqdefreader as app
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name=app.__project__,
version=app.__version__,
author=app.__author__,
author_email=app.__author_email__,
description=app.__doc__,
long_description=("**aqdef-reader** is a Python module to read AQDEF (Q-DAS or qdas) ASCII files via Python. The package "
"comes with data structures to cover the tranfer file format header elements such as parts (Teiletyp) "
"and characteristics (Merkmale). As the ASCII files might already come with measured, values, the "
"reader function can already read these values (Messwerte) and stores them as part of the "
"characteristics described in the transfer file."),
url=app.__url__,
classifiers=app.__classifiers__,
packages=setuptools.find_packages(),
python_requires='>=3.6',
)