release notes: ============== Features: - centralize all functionalities of PyLoT and control them from within the main GUI - handling multiple events inside GUI with project files (save and load work progress) - GUI based adjustments of pick parameters and I/O - interactive tuning of parameters from within the GUI - call automatic picking algorithm from within the GUI - comparison of automatic with manual picks for multiple events using clear differentiation of manual picks into 'tune' and 'test-set' (beta) - manual picking of different (user defined) phase types - phase onset estimation with ObsPy TauPy - interactive zoom/scale functionalities in all plots (mousewheel, pan, pan-zoom) - array map to visualize stations and control onsets (beta feature, switch to manual picks not implemented) Platform support: - python 3 support - Windows support Performance: - multiprocessing for automatic picking and restitution of multiple stations - use pyqtgraph library for better performance on main waveform plot Visualization: - pick uncertainty (quality classes) visualization with gradients - pick color unification for all plots - new icons and stylesheets Known Issues:
18 lines
601 B
Python
18 lines
601 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='PyLoT',
|
|
version='0.2',
|
|
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', 'matplotlib', 'numpy'],
|
|
url='dummy',
|
|
license='LGPLv3',
|
|
author='Sebastian Wehling-Benatelli',
|
|
author_email='sebastian.wehling@rub.de',
|
|
description='Comprehensive Python picking and Location Toolbox for seismological data.'
|
|
)
|