pyckster 26.1.2__py3-none-any.whl → 26.1.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyckster/__init__.py +2 -2
- pyckster/core.py +3041 -607
- pyckster/pick_io.py +13 -3
- pyckster/sw_utils.py +199 -0
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/METADATA +13 -5
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/RECORD +10 -11
- pyckster/pac_inversion.py +0 -785
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/WHEEL +0 -0
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/entry_points.txt +0 -0
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/licenses/LICENCE +0 -0
- {pyckster-26.1.2.dist-info → pyckster-26.1.4.dist-info}/top_level.txt +0 -0
pyckster/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Pyckster - A PyQt5-based GUI for
|
|
2
|
+
Pyckster - A PyQt5-based GUI for the processing and analysis of active near-surface seismic data
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
5
|
# Set matplotlib backend to prevent popup windows before any imports
|
|
@@ -15,7 +15,7 @@ except ImportError:
|
|
|
15
15
|
pass # matplotlib not available, that's fine
|
|
16
16
|
|
|
17
17
|
# Define version and metadata in one place
|
|
18
|
-
__version__ = "26.1.
|
|
18
|
+
__version__ = "26.1.4"
|
|
19
19
|
__author__ = "Sylvain Pasquet"
|
|
20
20
|
__email__ = "sylvain.pasquet@sorbonne-universite.fr"
|
|
21
21
|
__license__ = "GPLv3"
|