503ea419c4
release notes: ============== Features - consistent manual phase picking through predefined SNR dependant zoom level - uniform uncertainty estimation from waveform's properties for automatic and manual picks - pdf representation and comparison of picks taking the uncertainty intrinsically into account - Richter and moment magnitude estimation - location determination with external installation of [NonLinLoc](http://alomax.free.fr/nlloc/index.html) Known issues - Magnitude estimation from manual PyLoT takes some time (instrument correction)
18 lines
580 B
Python
18 lines
580 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='PyLoT',
|
|
version='0.1a1',
|
|
packages=['pylot', 'pylot.core', 'pylot.core.loc', 'pylot.core.pick',
|
|
'pylot.core.io', 'pylot.core.util', 'pylot.core.active',
|
|
'pylot.core.analysis', 'pylot.testing'],
|
|
requires=['obspy', 'PySide'],
|
|
url='dummy',
|
|
license='LGPLv3',
|
|
author='Sebastian Wehling-Benatelli',
|
|
author_email='sebastian.wehling@rub.de',
|
|
description='Comprehensive Python picking and Location Toolbox for seismological data.'
|
|
)
|