pyrefra 24.11.1__tar.gz
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.
- pyrefra-24.11.1/PKG-INFO +31 -0
- pyrefra-24.11.1/pyproject.toml +55 -0
- pyrefra-24.11.1/pyrefra/Pyrefra.py +1010 -0
- pyrefra-24.11.1/pyrefra/__init__.py +4 -0
- pyrefra-24.11.1/pyrefra/__main__.py +16 -0
- pyrefra-24.11.1/pyrefra/data/data.py +1197 -0
- pyrefra-24.11.1/pyrefra/data/files.py +163 -0
- pyrefra-24.11.1/pyrefra/data/geometry.py +245 -0
- pyrefra-24.11.1/pyrefra/data/traces.py +481 -0
- pyrefra-24.11.1/pyrefra/plotting/refraPlot.py +4615 -0
- pyrefra-24.11.1/pyrefra/plotting/refraWindow.ui +772 -0
- pyrefra-24.11.1/pyrefra/pyrefra_logo.png +0 -0
- pyrefra-24.11.1/pyrefra/pyrefra_script.py +65 -0
- pyrefra-24.11.1/pyrefra/pyrefra_start.py +83 -0
- pyrefra-24.11.1/pyrefra/refraData.py +6422 -0
- pyrefra-24.11.1/pyrefra/utilities/utilities.py +4264 -0
- pyrefra-24.11.1/pyrefra/version.py +1 -0
- pyrefra-24.11.1/pyrefra.egg-info/PKG-INFO +31 -0
- pyrefra-24.11.1/pyrefra.egg-info/SOURCES.txt +22 -0
- pyrefra-24.11.1/pyrefra.egg-info/dependency_links.txt +1 -0
- pyrefra-24.11.1/pyrefra.egg-info/entry_points.txt +2 -0
- pyrefra-24.11.1/pyrefra.egg-info/requires.txt +7 -0
- pyrefra-24.11.1/pyrefra.egg-info/top_level.txt +1 -0
- pyrefra-24.11.1/setup.cfg +4 -0
pyrefra-24.11.1/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pyrefra
|
|
3
|
+
Version: 24.11.1
|
|
4
|
+
Summary: Data treatment for refraction seismic data
|
|
5
|
+
Author-email: Hermann ZEYEN <hermann.zeyen@universite-paris-saclay.fr>
|
|
6
|
+
Classifier: Development Status :: 3 - Alpha
|
|
7
|
+
Classifier: Intended Audience :: Science/Research
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
10
|
+
Classifier: Programming Language :: Python
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering
|
|
19
|
+
Classifier: Typing :: Typed
|
|
20
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
21
|
+
Classifier: Operating System :: POSIX
|
|
22
|
+
Classifier: Operating System :: Unix
|
|
23
|
+
Classifier: Operating System :: MacOS
|
|
24
|
+
Requires-Python: >=3.8
|
|
25
|
+
Requires-Dist: pygimli
|
|
26
|
+
Requires-Dist: scikit-learn
|
|
27
|
+
Requires-Dist: numpy
|
|
28
|
+
Requires-Dist: matplotlib
|
|
29
|
+
Requires-Dist: obspy
|
|
30
|
+
Requires-Dist: statsmodels
|
|
31
|
+
Requires-Dist: colorcet
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pyrefra"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
requires-python = ">=3.8"
|
|
9
|
+
|
|
10
|
+
description = "Data treatment for refraction seismic data"
|
|
11
|
+
authors = [{ name = "Hermann ZEYEN", email = "hermann.zeyen@universite-paris-saclay.fr" }]
|
|
12
|
+
|
|
13
|
+
dependencies = [
|
|
14
|
+
"pygimli",
|
|
15
|
+
"scikit-learn",
|
|
16
|
+
"numpy",
|
|
17
|
+
"matplotlib",
|
|
18
|
+
"obspy",
|
|
19
|
+
"statsmodels",
|
|
20
|
+
"colorcet",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
classifiers = [
|
|
24
|
+
'Development Status :: 3 - Alpha',
|
|
25
|
+
'Intended Audience :: Science/Research',
|
|
26
|
+
'Intended Audience :: Developers',
|
|
27
|
+
'License :: OSI Approved :: BSD License',
|
|
28
|
+
'Programming Language :: Python',
|
|
29
|
+
'Programming Language :: Python :: 3',
|
|
30
|
+
'Programming Language :: Python :: 3.8',
|
|
31
|
+
'Programming Language :: Python :: 3.9',
|
|
32
|
+
'Programming Language :: Python :: 3.10',
|
|
33
|
+
'Programming Language :: Python :: 3.11',
|
|
34
|
+
'Programming Language :: Python :: 3.12',
|
|
35
|
+
'Topic :: Software Development',
|
|
36
|
+
'Topic :: Scientific/Engineering',
|
|
37
|
+
'Typing :: Typed',
|
|
38
|
+
'Operating System :: Microsoft :: Windows',
|
|
39
|
+
'Operating System :: POSIX',
|
|
40
|
+
'Operating System :: Unix',
|
|
41
|
+
'Operating System :: MacOS',
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[project.scripts]
|
|
45
|
+
pyrefra = "pyrefra.__main__:execute_script"
|
|
46
|
+
|
|
47
|
+
[tool.setuptools]
|
|
48
|
+
packages = ["pyrefra", "pyrefra.data", "pyrefra.plotting", "pyrefra.utilities"]
|
|
49
|
+
include-package-data = false
|
|
50
|
+
|
|
51
|
+
[tool.setuptools.package-data]
|
|
52
|
+
"*" = ["*.ui", "*.py", "*.png"]
|
|
53
|
+
|
|
54
|
+
[tool.setuptools.dynamic]
|
|
55
|
+
version = { attr = "pyrefra.version.__version__" }
|