Convert DAS data to established formats
https://pyrocko.org/idas_convert/docs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
613 B
24 lines
613 B
import setuptools |
|
|
|
setuptools.setup( |
|
name="das-convert", |
|
version="0.1.0", |
|
author="Marius Paul Isken", |
|
author_email="mi@gfz-potsdam.de", |
|
description="Convert seismic DAS data to anything", |
|
url="https://git.pyrocko.org/pyrocko/idas-convert", |
|
package_dir={"das_convert": "src"}, |
|
packages=[ |
|
"das_convert", |
|
], |
|
entry_points={ |
|
"console_scripts": [ |
|
"das_convert = das_convert.app:main", |
|
] |
|
}, |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"Operating System :: OS Independent", |
|
], |
|
python_requires=">=3.6", |
|
)
|
|
|