10 changed files with 51 additions and 11 deletions
@ -1,26 +1,24 @@
|
||||
import setuptools |
||||
|
||||
setuptools.setup( |
||||
name="idas-convert", |
||||
name="das-convert", |
||||
version="0.1.0", |
||||
author="Marius Paul Isken", |
||||
author_email="mi@gfz-potsdam.de", |
||||
description="Convert iDAS TDMS data to anything", |
||||
description="Convert seismic DAS data to anything", |
||||
url="https://git.pyrocko.org/pyrocko/idas-convert", |
||||
package_dir={ |
||||
'idas_convert': 'src' |
||||
}, |
||||
package_dir={"das_convert": "src"}, |
||||
packages=[ |
||||
'idas_convert', |
||||
"das_convert", |
||||
], |
||||
entry_points={ |
||||
'console_scripts': [ |
||||
'idas_convert = idas_convert.app:main', |
||||
]}, |
||||
|
||||
"console_scripts": [ |
||||
"das_convert = das_convert.app:main", |
||||
] |
||||
}, |
||||
classifiers=[ |
||||
"Programming Language :: Python :: 3", |
||||
"Operating System :: OS Independent", |
||||
], |
||||
python_requires='>=3.6', |
||||
python_requires=">=3.6", |
||||
) |
||||
|
@ -1,2 +1,6 @@
|
||||
# SPDX-FileCopyrightText: 2021 GFZ German Research Centre for Geosciences |
||||
# |
||||
# SPDX-License-Identifier: GLP-3.0-or-later |
||||
|
||||
from . import gfz_tapes # noqa |
||||
from . import telegram_bot # noqa |
||||
|
Loading…
Reference in new issue