gebpy 1.1.3__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.
Files changed (254) hide show
  1. gebpy/__init__.py +55 -0
  2. gebpy/__pycache__/__init__.cpython-310.pyc +0 -0
  3. gebpy/adapters/__init__.py +0 -0
  4. gebpy/cli/__init__.py +0 -0
  5. gebpy/core/__init__.py +0 -0
  6. gebpy/core/chemistry/__init__.py +0 -0
  7. gebpy/core/chemistry/common.py +1369 -0
  8. gebpy/core/chemistry/elements.py +317 -0
  9. gebpy/core/chemistry/geochemistry.py +1728 -0
  10. gebpy/core/fluids/__init__.py +0 -0
  11. gebpy/core/io/__init__.py +0 -0
  12. gebpy/core/mathematics/__init__.py +0 -0
  13. gebpy/core/minerals/__init__.py +0 -0
  14. gebpy/core/minerals/carbonates.py +412 -0
  15. gebpy/core/minerals/common.py +555 -0
  16. gebpy/core/minerals/config.py +77 -0
  17. gebpy/core/minerals/cyclosilicates.py +0 -0
  18. gebpy/core/minerals/halides.py +0 -0
  19. gebpy/core/minerals/inosilicates.py +0 -0
  20. gebpy/core/minerals/nesosilicates.py +0 -0
  21. gebpy/core/minerals/organics.py +0 -0
  22. gebpy/core/minerals/oxides.py +589 -0
  23. gebpy/core/minerals/phosphates.py +0 -0
  24. gebpy/core/minerals/phospides.py +0 -0
  25. gebpy/core/minerals/phyllosilicates.py +436 -0
  26. gebpy/core/minerals/sorosilicates.py +0 -0
  27. gebpy/core/minerals/sulfates.py +0 -0
  28. gebpy/core/minerals/sulfides.py +459 -0
  29. gebpy/core/minerals/synthesis.py +201 -0
  30. gebpy/core/minerals/tectosilicates.py +433 -0
  31. gebpy/core/physics/__init__.py +0 -0
  32. gebpy/core/physics/common.py +53 -0
  33. gebpy/core/physics/geophysics.py +351 -0
  34. gebpy/core/rocks/__init__.py +0 -0
  35. gebpy/core/rocks/anisotropic_rocks.py +395 -0
  36. gebpy/core/rocks/common.py +95 -0
  37. gebpy/core/rocks/config.py +77 -0
  38. gebpy/core/rocks/isotropic_rocks.py +395 -0
  39. gebpy/core/rocks/sedimentary.py +385 -0
  40. gebpy/core/subsurface/__init__.py +0 -0
  41. gebpy/data_minerals/__init__.py +0 -0
  42. gebpy/data_minerals/albite.yaml +59 -0
  43. gebpy/data_minerals/anatase.yaml +43 -0
  44. gebpy/data_minerals/ankerite.yaml +47 -0
  45. gebpy/data_minerals/annite.yaml +57 -0
  46. gebpy/data_minerals/anorthite.yaml +59 -0
  47. gebpy/data_minerals/antigorite.yaml +53 -0
  48. gebpy/data_minerals/aragonite.yaml +48 -0
  49. gebpy/data_minerals/argutite.yaml +43 -0
  50. gebpy/data_minerals/arsenolite.yaml +40 -0
  51. gebpy/data_minerals/au3oxide.yaml +46 -0
  52. gebpy/data_minerals/avicennite.yaml +40 -0
  53. gebpy/data_minerals/azurite.yaml +53 -0
  54. gebpy/data_minerals/baddeleyite.yaml +49 -0
  55. gebpy/data_minerals/bismite.yaml +49 -0
  56. gebpy/data_minerals/boehmite.yaml +48 -0
  57. gebpy/data_minerals/brookite.yaml +46 -0
  58. gebpy/data_minerals/brucite.yaml +45 -0
  59. gebpy/data_minerals/bunsenite.yaml +40 -0
  60. gebpy/data_minerals/calcite.yaml +45 -0
  61. gebpy/data_minerals/cassiterite.yaml +43 -0
  62. gebpy/data_minerals/cerussite.yaml +48 -0
  63. gebpy/data_minerals/chamosite.yaml +56 -0
  64. gebpy/data_minerals/chlorite.yaml +75 -0
  65. gebpy/data_minerals/chromite.yaml +42 -0
  66. gebpy/data_minerals/chrysotile.yaml +53 -0
  67. gebpy/data_minerals/claudetite.yaml +49 -0
  68. gebpy/data_minerals/clinochlore.yaml +55 -0
  69. gebpy/data_minerals/cochromite.yaml +42 -0
  70. gebpy/data_minerals/corundum.yaml +43 -0
  71. gebpy/data_minerals/crocoite.yaml +51 -0
  72. gebpy/data_minerals/cuprite.yaml +40 -0
  73. gebpy/data_minerals/cuprospinel.yaml +42 -0
  74. gebpy/data_minerals/diaspore.yaml +48 -0
  75. gebpy/data_minerals/dolomite.yaml +47 -0
  76. gebpy/data_minerals/eastonite.yaml +57 -0
  77. gebpy/data_minerals/eskolaite.yaml +43 -0
  78. gebpy/data_minerals/fechlorite.yaml +61 -0
  79. gebpy/data_minerals/fecolumbite.yaml +48 -0
  80. gebpy/data_minerals/ferberite.yaml +51 -0
  81. gebpy/data_minerals/fetantalite.yaml +48 -0
  82. gebpy/data_minerals/franklinite.yaml +42 -0
  83. gebpy/data_minerals/gahnite.yaml +42 -0
  84. gebpy/data_minerals/galaxite.yaml +42 -0
  85. gebpy/data_minerals/geikielite.yaml +45 -0
  86. gebpy/data_minerals/gibbsite.yaml +51 -0
  87. gebpy/data_minerals/glauconite.yaml +69 -0
  88. gebpy/data_minerals/goethite.yaml +48 -0
  89. gebpy/data_minerals/groutite.yaml +48 -0
  90. gebpy/data_minerals/hematite.yaml +43 -0
  91. gebpy/data_minerals/hercynite.yaml +42 -0
  92. gebpy/data_minerals/huebnerite.yaml +51 -0
  93. gebpy/data_minerals/ikaite.yaml +53 -0
  94. gebpy/data_minerals/illite.yaml +55 -0
  95. gebpy/data_minerals/ilmenite.yaml +45 -0
  96. gebpy/data_minerals/jacobsite.yaml +42 -0
  97. gebpy/data_minerals/kalsilite.yaml +47 -0
  98. gebpy/data_minerals/kaolinite.yaml +59 -0
  99. gebpy/data_minerals/karelianite.yaml +43 -0
  100. gebpy/data_minerals/lime.yaml +40 -0
  101. gebpy/data_minerals/litharge.yaml +43 -0
  102. gebpy/data_minerals/magnesiochromite.yaml +42 -0
  103. gebpy/data_minerals/magnesioferrite.yaml +42 -0
  104. gebpy/data_minerals/magnesite.yaml +45 -0
  105. gebpy/data_minerals/magnetite.yaml +41 -0
  106. gebpy/data_minerals/malachite.yaml +53 -0
  107. gebpy/data_minerals/manganite.yaml +51 -0
  108. gebpy/data_minerals/manganochromite.yaml +42 -0
  109. gebpy/data_minerals/manganosite.yaml +40 -0
  110. gebpy/data_minerals/marialite.yaml +49 -0
  111. gebpy/data_minerals/massicot.yaml +46 -0
  112. gebpy/data_minerals/meionite.yaml +49 -0
  113. gebpy/data_minerals/mgchlorite.yaml +61 -0
  114. gebpy/data_minerals/mgcolumbite.yaml +48 -0
  115. gebpy/data_minerals/mgtantalite.yaml +48 -0
  116. gebpy/data_minerals/microcline.yaml +59 -0
  117. gebpy/data_minerals/minium.yaml +44 -0
  118. gebpy/data_minerals/mnchlorite.yaml +61 -0
  119. gebpy/data_minerals/mncolumbite.yaml +48 -0
  120. gebpy/data_minerals/mntantalite.yaml +48 -0
  121. gebpy/data_minerals/monteponite.yaml +40 -0
  122. gebpy/data_minerals/montmorillonite.yaml +77 -0
  123. gebpy/data_minerals/muscovite.yaml +55 -0
  124. gebpy/data_minerals/nanepheline.yaml +47 -0
  125. gebpy/data_minerals/nichlorite.yaml +61 -0
  126. gebpy/data_minerals/nichromite.yaml +42 -0
  127. gebpy/data_minerals/nimite.yaml +55 -0
  128. gebpy/data_minerals/nontronite.yaml +73 -0
  129. gebpy/data_minerals/orthoclase.yaml +53 -0
  130. gebpy/data_minerals/paratellurite.yaml +43 -0
  131. gebpy/data_minerals/pennantite.yaml +61 -0
  132. gebpy/data_minerals/periclase.yaml +40 -0
  133. gebpy/data_minerals/phlogopite.yaml +57 -0
  134. gebpy/data_minerals/plattnerite.yaml +43 -0
  135. gebpy/data_minerals/powellite.yaml +45 -0
  136. gebpy/data_minerals/pyrite.yaml +40 -0
  137. gebpy/data_minerals/pyrolusite.yaml +43 -0
  138. gebpy/data_minerals/pyrophanite.yaml +45 -0
  139. gebpy/data_minerals/pyrophyllite.yaml +59 -0
  140. gebpy/data_minerals/quartz.yaml +43 -0
  141. gebpy/data_minerals/rhodochrosite.yaml +45 -0
  142. gebpy/data_minerals/rutile.yaml +43 -0
  143. gebpy/data_minerals/saponite.yaml +77 -0
  144. gebpy/data_minerals/scheelite.yaml +45 -0
  145. gebpy/data_minerals/scrutinyite.yaml +46 -0
  146. gebpy/data_minerals/senarmontite.yaml +40 -0
  147. gebpy/data_minerals/siderite.yaml +45 -0
  148. gebpy/data_minerals/siderophyllite.yaml +57 -0
  149. gebpy/data_minerals/smithsonite.yaml +45 -0
  150. gebpy/data_minerals/spinel.yaml +42 -0
  151. gebpy/data_minerals/stishovite.yaml +43 -0
  152. gebpy/data_minerals/stolzite.yaml +45 -0
  153. gebpy/data_minerals/talc.yaml +53 -0
  154. gebpy/data_minerals/tistarite.yaml +43 -0
  155. gebpy/data_minerals/trevorite.yaml +42 -0
  156. gebpy/data_minerals/ulvoespinel.yaml +42 -0
  157. gebpy/data_minerals/uraninite.yaml +40 -0
  158. gebpy/data_minerals/valentinite.yaml +46 -0
  159. gebpy/data_minerals/vermiculite.yaml +69 -0
  160. gebpy/data_minerals/wulfenite.yaml +45 -0
  161. gebpy/data_minerals/wustite.yaml +40 -0
  162. gebpy/data_minerals/zincite.yaml +43 -0
  163. gebpy/data_minerals/zincochromite.yaml +42 -0
  164. gebpy/data_rocks/__init__.py +0 -0
  165. gebpy/data_rocks/dolostone.yaml +40 -0
  166. gebpy/data_rocks/limestone.yaml +40 -0
  167. gebpy/data_rocks/marl.yaml +50 -0
  168. gebpy/data_rocks/sandstone.yaml +39 -0
  169. gebpy/data_rocks/shale.yaml +50 -0
  170. gebpy/gebpy_app.py +8732 -0
  171. gebpy/gui/__init__.py +0 -0
  172. gebpy/lib/images/GebPy_Header.png +0 -0
  173. gebpy/lib/images/GebPy_Icon.png +0 -0
  174. gebpy/lib/images/GebPy_Logo.png +0 -0
  175. gebpy/main.py +29 -0
  176. gebpy/modules/__init__.py +0 -0
  177. gebpy/modules/__pycache__/__init__.cpython-310.pyc +0 -0
  178. gebpy/modules/__pycache__/metamorphics.cpython-310.pyc +0 -0
  179. gebpy/modules/__pycache__/silicates.cpython-310.pyc +0 -0
  180. gebpy/modules/carbonates.py +2658 -0
  181. gebpy/modules/chemistry.py +1369 -0
  182. gebpy/modules/core.py +1805 -0
  183. gebpy/modules/elements.py +317 -0
  184. gebpy/modules/evaporites.py +1299 -0
  185. gebpy/modules/exploration.py +1145 -0
  186. gebpy/modules/fluids.py +339 -0
  187. gebpy/modules/geochemistry.py +1727 -0
  188. gebpy/modules/geophysics.py +351 -0
  189. gebpy/modules/gui.py +9093 -0
  190. gebpy/modules/gui_elements.py +145 -0
  191. gebpy/modules/halides.py +485 -0
  192. gebpy/modules/igneous.py +2241 -0
  193. gebpy/modules/metamorphics.py +3222 -0
  194. gebpy/modules/mineralogy.py +442 -0
  195. gebpy/modules/minerals.py +7954 -0
  196. gebpy/modules/ore.py +1648 -0
  197. gebpy/modules/organics.py +530 -0
  198. gebpy/modules/oxides.py +9057 -0
  199. gebpy/modules/petrophysics.py +98 -0
  200. gebpy/modules/phosphates.py +589 -0
  201. gebpy/modules/phospides.py +194 -0
  202. gebpy/modules/plotting.py +619 -0
  203. gebpy/modules/pyllosilicates.py +380 -0
  204. gebpy/modules/sedimentary_rocks.py +908 -0
  205. gebpy/modules/sequences.py +2166 -0
  206. gebpy/modules/series.py +1625 -0
  207. gebpy/modules/silicates.py +11102 -0
  208. gebpy/modules/siliciclastics.py +1846 -0
  209. gebpy/modules/subsurface_2d.py +179 -0
  210. gebpy/modules/sulfates.py +1629 -0
  211. gebpy/modules/sulfides.py +4786 -0
  212. gebpy/plotting/__init__.py +0 -0
  213. gebpy/ui_nb/__init__.py +0 -0
  214. gebpy/user_data/.gitkeep +0 -0
  215. gebpy-1.1.3.dist-info/LICENSE +165 -0
  216. gebpy-1.1.3.dist-info/METADATA +207 -0
  217. gebpy-1.1.3.dist-info/RECORD +254 -0
  218. gebpy-1.1.3.dist-info/WHEEL +5 -0
  219. gebpy-1.1.3.dist-info/entry_points.txt +2 -0
  220. gebpy-1.1.3.dist-info/top_level.txt +1 -0
  221. modules/__init__.py +0 -0
  222. modules/carbonates.py +2658 -0
  223. modules/chemistry.py +1369 -0
  224. modules/core.py +1805 -0
  225. modules/elements.py +317 -0
  226. modules/evaporites.py +1299 -0
  227. modules/exploration.py +765 -0
  228. modules/fluids.py +339 -0
  229. modules/geochemistry.py +1727 -0
  230. modules/geophysics.py +337 -0
  231. modules/gui.py +9093 -0
  232. modules/gui_elements.py +145 -0
  233. modules/halides.py +485 -0
  234. modules/igneous.py +2196 -0
  235. modules/metamorphics.py +2699 -0
  236. modules/mineralogy.py +442 -0
  237. modules/minerals.py +7954 -0
  238. modules/ore.py +1628 -0
  239. modules/organics.py +530 -0
  240. modules/oxides.py +9057 -0
  241. modules/petrophysics.py +98 -0
  242. modules/phosphates.py +589 -0
  243. modules/phospides.py +194 -0
  244. modules/plotting.py +619 -0
  245. modules/pyllosilicates.py +380 -0
  246. modules/sedimentary_rocks.py +908 -0
  247. modules/sequences.py +2166 -0
  248. modules/series.py +1625 -0
  249. modules/silicates.py +11102 -0
  250. modules/siliciclastics.py +1830 -0
  251. modules/subsurface_2d.py +179 -0
  252. modules/sulfates.py +1629 -0
  253. modules/sulfides.py +4786 -0
  254. notebooks/__init__.py +0 -0
File without changes
File without changes
File without changes
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
@@ -0,0 +1,207 @@
1
+ Metadata-Version: 2.1
2
+ Name: gebpy
3
+ Version: 1.1.3
4
+ Summary: GebPy is a Python-based, open source tool for the generation of geological data of minerals, rocks and complete lithological sequences.
5
+ Home-page: https://github.com/MABeeskow/GebPy
6
+ Author: Maximilian Alexander Beeskow
7
+ Author-email: maximilian.beeskow@rwth-aachen.com
8
+ License: LGPL-3.0
9
+ Keywords: geophysics,geochemistry,mineralogy,petrology,seismology,stratigraphy,geology,geosciences
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: numpy
13
+ Requires-Dist: scipy
14
+ Requires-Dist: pandas
15
+ Requires-Dist: matplotlib
16
+
17
+ [![Python 3.7+](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/)
18
+ [![License: LGPL v3](https://img.shields.io/badge/License-LGPL%20v3-blue.svg)](https://www.gnu.org/licenses/lgpl-3.0)
19
+ [![DOI](https://zenodo.org/badge/276040050.svg)](https://doi.org/10.5281/zenodo.17945808)
20
+
21
+ <a href="https://github.com/MABeeskow/GebPy">
22
+ <img src="https://raw.githubusercontent.com/MABeeskow/GebPy/master/documents/readme_images/readme_header.png"
23
+ width="67%">
24
+ </a>
25
+
26
+ ---
27
+
28
+ # GebPy
29
+
30
+ **GebPy** is an open-source, Python-based **engine for the synthetic generation of geological data**, with a focus
31
+ on **minerals, rocks, and stratigraphic sequences**.
32
+
33
+ GebPy is designed to generate **physically, chemically, and crystallographically consistent** datasets under controlled
34
+ assumptions. The core idea is that bulk rock properties are primarily determined by the underlying **mineral
35
+ assemblage**, while structural and tectonic effects are intentionally excluded.
36
+
37
+ The project targets **research, teaching, and data-driven exploration workflows**, including the generation of
38
+ high-quality training data for machine learning applications.
39
+
40
+ ---
41
+
42
+ ## 🚀 Project Status
43
+
44
+ * **Current version:** 1.1.3
45
+ * **License:** LGPL-3.0
46
+ * **Development:** Active
47
+ * **API stability:** evolving (pre-2.0)
48
+
49
+ The core engine of GebPy is considered stable. The public API may evolve until a future 2.0.0 release, where long-term
50
+ API stability is intended.
51
+
52
+ ---
53
+
54
+ ## 🧱 Design Philosophy
55
+
56
+ GebPy is designed as a **scientific engine**, not as a monolithic application.
57
+
58
+ Key principles:
59
+
60
+ * Engine-first architecture
61
+ * Explicit physical, chemical, and crystallographic assumptions
62
+ * Reproducibility over visual polish
63
+ * Notebook-first workflows
64
+
65
+ A graphical user interface (GUI) exists for exploratory use but is considered **legacy** and will be deprecated in
66
+ future releases. The recommended way to use GebPy is via **Python scripts and Jupyter notebooks**.
67
+
68
+ ---
69
+
70
+ ## 🚀 Installation
71
+
72
+ Install the latest stable release from PyPI:
73
+
74
+ ```bash
75
+ pip install gebpy
76
+ ```
77
+
78
+ For development or research use:
79
+
80
+ ```bash
81
+ git clone https://github.com/MABeeskow/GebPy.git
82
+ cd GebPy
83
+ pip install .
84
+ ```
85
+
86
+ ---
87
+
88
+ ## 🧪 Quick Example
89
+
90
+ ```python
91
+ from gebpy import Carbonates
92
+
93
+ calcite = Carbonates(name="Calcite", random_seed=42)
94
+ data = calcite.generate_dataset(number=1)
95
+
96
+ print(data["rho"])
97
+ ```
98
+
99
+ ---
100
+
101
+ ## 💎 Synthetic Mineral Data
102
+
103
+ Synthetic mineral data are generated based on:
104
+
105
+ * elemental properties derived from mineral formulas
106
+ * crystallographic cell parameters defining the crystal lattice
107
+ * elastic parameters (bulk and shear modulus) taken from literature or databases
108
+
109
+ From these inputs, GebPy derives, among others:
110
+
111
+ * molar mass $M$
112
+ * molar and cell volume $V_m$ and $V$
113
+ * density $\varrho$
114
+ * seismic velocities $v_P$ and $v_S$
115
+ * elastic properties $E$ and $\nu$
116
+ * electromagnetic properties $GR$, $PE$, $U$
117
+
118
+ In addition, the full **chemical composition** of each mineral is calculated.
119
+
120
+ ---
121
+
122
+ ## 🪨 Synthetic Rock Data
123
+
124
+ Based on synthetic mineral datasets, GebPy computes bulk rock properties, including chemical composition.
125
+
126
+ Calculated properties include:
127
+
128
+ * bulk density $\varrho_B$
129
+ * porosity $\phi$
130
+ * seismic velocities $v_P$ and $v_S$
131
+ * elastic properties $E$ and $\nu$
132
+ * electromagnetic properties $GR$, $PE$, $U$
133
+
134
+ The current database contains **more than 100 minerals**, allowing the modeling of common sedimentary, igneous,
135
+ metamorphic, and ore-related rocks.
136
+
137
+ ---
138
+
139
+ ## 🏞️ Stratigraphic Data
140
+
141
+ Since GebPy can generate synthetic rock data, it also supports the construction of **stratigraphic sequences** by
142
+ stacking lithological units.
143
+
144
+ Please note that GebPy intentionally does **not** consider effects related to:
145
+
146
+ * structural geology
147
+ * tectonics
148
+ * fluid flow
149
+ * geothermal gradients
150
+ * lithostatic pressure
151
+
152
+ These simplifications are deliberate and serve to maintain conceptual clarity and reproducibility.
153
+
154
+ ---
155
+
156
+ ## 🎯 Intended Use Cases
157
+
158
+ * Teaching mineralogy, petrology, and geophysics
159
+ * Synthetic data generation for machine learning
160
+ * Benchmarking and validation of exploration algorithms
161
+ * Conceptual testing of geological hypotheses
162
+
163
+ GebPy is **not** intended to replace field observations or laboratory measurements.
164
+
165
+ ---
166
+
167
+ ## 💭 Citation
168
+
169
+ If you use GebPy in academic or industrial work, please cite:
170
+
171
+ > Beeskow, M. A. (2025).
172
+ > *GebPy – A Python engine for synthetic geological data generation*.
173
+
174
+ A DOI will be provided via **Zenodo** for stable releases.
175
+
176
+ ---
177
+
178
+ ## ⚖️ License
179
+
180
+ GebPy is released under the **LGPL-3.0 License**.
181
+
182
+ You are free to use, modify, and redistribute the software under the terms of this license. Modifications to the GebPy
183
+ source code must remain open.
184
+
185
+ ---
186
+
187
+ ## 👤 Author
188
+
189
+ **Maximilian A. Beeskow**
190
+ Geoscientist (Geochemistry, Mineral Systems, Hydrothermal Processes)
191
+ RWTH Aachen University
192
+
193
+ * ORCID: https://orcid.org/0000-0003-2456-5228
194
+ * GitHub: [https://github.com/MABeeskow](https://github.com/MABeeskow)
195
+ * Zenodo: https://doi.org/10.5281/zenodo.17945809
196
+
197
+ ---
198
+
199
+ ## 🗂️ Legacy Code Notice
200
+
201
+ Folders such as `gebpy_legacy/` and `modules_archive/` contain archived or transitional code from earlier development
202
+ stages. These components are **not part of the public API** and are preserved solely for reproducibility and historical
203
+ reference.
204
+
205
+ ---
206
+
207
+ *Last updated: 16.12.2025*
@@ -0,0 +1,254 @@
1
+ gebpy/__init__.py,sha256=Y3i1-v_DTnS_QI_qVslE9VFHYDBN-KBzrzpxB60WyKg,1384
2
+ gebpy/gebpy_app.py,sha256=qIsHPKhD6xOYqaoggSxME-CRWJLGCv3qj8PT9aazz60,509374
3
+ gebpy/main.py,sha256=b5EijOLnesrMKvY391N9qBYVfrOxUHCBexOCXESC8Io,828
4
+ gebpy/__pycache__/__init__.cpython-310.pyc,sha256=NYpNvu25cWWHR1zbP-O9e9MqbMdpxqzLozUEd0LCS5Y,150
5
+ gebpy/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ gebpy/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ gebpy/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ gebpy/core/chemistry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ gebpy/core/chemistry/common.py,sha256=oBtshqaQm6yu7LrP2y-9aEYfE_74z4r7v4Zmp5Zvy7w,69095
10
+ gebpy/core/chemistry/elements.py,sha256=libaoynOnM2hTLRhXlJ6vIfrWZNpz2hmax0k093Hy0M,15098
11
+ gebpy/core/chemistry/geochemistry.py,sha256=Z-m10f_cVOHxX7BlTVm9_8SECVE3Z7q3LjpMaFvIgLo,74436
12
+ gebpy/core/fluids/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ gebpy/core/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ gebpy/core/mathematics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ gebpy/core/minerals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ gebpy/core/minerals/carbonates.py,sha256=IVaPq1S28d9qSgsYd4NHvGeqGT-3oTpdLFPcNNYJaeA,16935
17
+ gebpy/core/minerals/common.py,sha256=q059oHGzQMRYnsDsrtgm8AR6EcY8Aywahkz2Zi5SeCc,24569
18
+ gebpy/core/minerals/config.py,sha256=GZBPHKLGet83kLyvOK9CFZrJebmM_cktxO8qd2a8BKM,2601
19
+ gebpy/core/minerals/cyclosilicates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
+ gebpy/core/minerals/halides.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ gebpy/core/minerals/inosilicates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ gebpy/core/minerals/nesosilicates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ gebpy/core/minerals/organics.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ gebpy/core/minerals/oxides.py,sha256=XDfTrfxdSHXy8_yaxDzEApLRYQkwLj3kOZr7cPmHj20,27555
25
+ gebpy/core/minerals/phosphates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ gebpy/core/minerals/phospides.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ gebpy/core/minerals/phyllosilicates.py,sha256=1eLRYi3oHzCVBQA252-KRke3yJF1rhCdz59xMl5wxTE,18522
28
+ gebpy/core/minerals/sorosilicates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ gebpy/core/minerals/sulfates.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ gebpy/core/minerals/sulfides.py,sha256=FrMEiO1-UCJA8KLydgBBUT-PyNr_S702nSb-GUNjGfw,19601
31
+ gebpy/core/minerals/synthesis.py,sha256=rtwO6W059dEpW5SnrVmlJWHvjzzToTELv3_ApIaViNc,8752
32
+ gebpy/core/minerals/tectosilicates.py,sha256=lprg6NA9EYGvwHM6weRP-KghJX7Uxm8c3TAeaCWBfng,17829
33
+ gebpy/core/physics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ gebpy/core/physics/common.py,sha256=hb9-HP258r6H_srdsLmut8okmnXsflOCRZ2js9CigT0,1209
35
+ gebpy/core/physics/geophysics.py,sha256=wobPChymcy56_P63yjjHA8Zf1dUUURDUTL0T6bOhXW0,11189
36
+ gebpy/core/rocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ gebpy/core/rocks/anisotropic_rocks.py,sha256=vNiPlt8nKj5Lzj8vZ-7u4mWdftK5agCVphWH6qL9wqs,15686
38
+ gebpy/core/rocks/common.py,sha256=_dLNVTAHIrJLIeItlDr7_FiaodGv1pW_-vGThs1OZuI,3759
39
+ gebpy/core/rocks/config.py,sha256=eS7m19vwaVadZNY3XvBOepz6G-7xVDhnq3OpbE92VpQ,2572
40
+ gebpy/core/rocks/isotropic_rocks.py,sha256=KBDrwoMoHLXfn0g-h-beP1qL8AM1pKwoyfiHWHnZM0g,15686
41
+ gebpy/core/rocks/sedimentary.py,sha256=nRA9uFAjmzDodjYW4720x5MAyAnMHGc_oSY2AMCwnUA,14904
42
+ gebpy/core/subsurface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ gebpy/data_minerals/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
+ gebpy/data_minerals/albite.yaml,sha256=mPeY6wxmp0n0NoRlqdpuyRgtGDCwVW69jfkXaKsPjdA,1101
45
+ gebpy/data_minerals/anatase.yaml,sha256=FU0h7SR52_F9yhk1Yax3pm10k6RHFOCnjZBmT-adXw8,752
46
+ gebpy/data_minerals/ankerite.yaml,sha256=rAPAWn8-HtM2t2mul3ogRBI4qG8E-W1ym09Jdf9WCxQ,747
47
+ gebpy/data_minerals/annite.yaml,sha256=3dic8cTiE1Fz3R5rHBz82JQ4gE6rSzgebBdaC761uuA,1017
48
+ gebpy/data_minerals/anorthite.yaml,sha256=P9PGDDG8m1s0L5RdvaVzCYHXIp1vb04PdTL266k6Q8w,1108
49
+ gebpy/data_minerals/antigorite.yaml,sha256=KxWL64iCFvDgSwwK99vvSdfms-dnkDJjQ6KEp0FAeFU,883
50
+ gebpy/data_minerals/aragonite.yaml,sha256=zi2H5g53GrHE4FrfJ9XiPmJKPpgBefpcP3Fk5x78oIM,797
51
+ gebpy/data_minerals/argutite.yaml,sha256=F_30QyUPhCuqBu-AqgozIlYAhGKSdsJXZtGqUNcTGyw,759
52
+ gebpy/data_minerals/arsenolite.yaml,sha256=_9mVsQe3ZyutjmUSx4y8U6ex7DRBIilArfiiaaL7JR4,704
53
+ gebpy/data_minerals/au3oxide.yaml,sha256=-MbgOYgrsaI_DqKGlR7VA7lK8MoQwYLVOuwvHuZXJoA,815
54
+ gebpy/data_minerals/avicennite.yaml,sha256=c7H2qxmr2LsUyfIR1CX3eCkiWKc0C34vfMY-eEH6NCU,704
55
+ gebpy/data_minerals/azurite.yaml,sha256=jjGXv_UmaKRzL3uTmr8GUTGsDbsbgUKrLbX9rvi7ueA,885
56
+ gebpy/data_minerals/baddeleyite.yaml,sha256=HFvrTVEetW1NuGPtAiV0Bga0bBkoYBclNd1EAdACk5A,867
57
+ gebpy/data_minerals/bismite.yaml,sha256=r4wRZ1BJi1pUkzuvYydb9cGiqVH92d1L8cx8ipWTMg8,860
58
+ gebpy/data_minerals/boehmite.yaml,sha256=T0hU8ruuVVw1nJkslykH2VF-Z72S1wRH2eDrkotAIAI,826
59
+ gebpy/data_minerals/brookite.yaml,sha256=L9QdnrJtfIZOzBQvN63_VZNbDk6sKJGV9rIxIr-eku4,808
60
+ gebpy/data_minerals/brucite.yaml,sha256=7VPIJI9_-V_Mcl4zQdqWLuMDARWLxHALO1wtkYMF5CU,768
61
+ gebpy/data_minerals/bunsenite.yaml,sha256=odWiojE8OsNrnUkio2tDxzdUKJmvldwpeY10BmHd78k,697
62
+ gebpy/data_minerals/calcite.yaml,sha256=nWX9hyQkXpuhiHhY9wkmwzBUnaUiIl5prtR0q-sLy80,728
63
+ gebpy/data_minerals/cassiterite.yaml,sha256=C7GenEJfI3d2nScBD62Jj3kg-DiUMQLLujdIXMd_YTA,758
64
+ gebpy/data_minerals/cerussite.yaml,sha256=G3SE1ttWuxyBw81uhuhX6V6p18f9NQxm9bWW7eBIspo,794
65
+ gebpy/data_minerals/chamosite.yaml,sha256=0EZIcCeohvDE8ixe78uri0kBeuul54qEk6xH7YEs7sU,907
66
+ gebpy/data_minerals/chlorite.yaml,sha256=-zdNGP379sPeOxRLckjqKvsvmEKoGfEO3zFWJWRKmPQ,1287
67
+ gebpy/data_minerals/chromite.yaml,sha256=eNScoPQ8CO9x15ivbUh3E3skQyt6sHc5uGOadLbzuPs,720
68
+ gebpy/data_minerals/chrysotile.yaml,sha256=nEU-jluVSpN7DJ8Ac1aaxQCPccuqjAEDlf4D7FxsycQ,871
69
+ gebpy/data_minerals/claudetite.yaml,sha256=0Xn1_cIweGoIyGWWYJA57wKMJs93HN1ZKz9zfPjJF6Y,868
70
+ gebpy/data_minerals/clinochlore.yaml,sha256=LavMy7yysfyvLfQYaedLfb7rVTDOVvLGZAkOpQHfMU4,810
71
+ gebpy/data_minerals/cochromite.yaml,sha256=TTCPVP0fTKgYkUViQGBcfqfVmHFk9IFEujMcTkJRwxw,725
72
+ gebpy/data_minerals/corundum.yaml,sha256=KVzhbguWWcNCc5zq0gcsi2zX57HDF3AvQQ6coHs4NEw,754
73
+ gebpy/data_minerals/crocoite.yaml,sha256=vKtYE4xncRn4pDfI58jHf99O7w3WzFasZSDB2RJpRxI,875
74
+ gebpy/data_minerals/cuprite.yaml,sha256=dOFVCyQsuRXn0hmNSXzkzTqlrEP_bk_PU9pzjCtLSXs,696
75
+ gebpy/data_minerals/cuprospinel.yaml,sha256=PHwAsM7GzQO1AVA1Hum_nTFok0W9T1zR1W_8Rjsu_-4,724
76
+ gebpy/data_minerals/diaspore.yaml,sha256=0DzNN3jOHh2T_-ziV4IzJb_UZj4I6wo3Fep_pOrIadY,831
77
+ gebpy/data_minerals/dolomite.yaml,sha256=g-0Yku41oulsksLCa-Jm4ls3sJVUSqTZYhUWynpeVUU,748
78
+ gebpy/data_minerals/eastonite.yaml,sha256=cgLTj36Mmu72wfFfaTxQSKjTaXvgGvp2AmUSoWved_Y,736
79
+ gebpy/data_minerals/eskolaite.yaml,sha256=XMS3FcjicoQ0LaUTmV3gekaqOYt-_JHu_IedwI2zevo,754
80
+ gebpy/data_minerals/fechlorite.yaml,sha256=MoZEpHQb0ou0iAENSqMCKcEcK73OAcFBiwgOjq2UdaE,1089
81
+ gebpy/data_minerals/fecolumbite.yaml,sha256=AhiLCv0n9_d9lqJXRvhrJub4Ya8uqJlBF9woBMyDTZg,840
82
+ gebpy/data_minerals/ferberite.yaml,sha256=1xSqe-cxeogd-bCFNc0IfhkAOu65cjbY3-d8j7RYwHM,875
83
+ gebpy/data_minerals/fetantalite.yaml,sha256=nDvqNECkCjglqfP1M58yBHmdBY0eB3HCDGbZn8JbqRU,836
84
+ gebpy/data_minerals/franklinite.yaml,sha256=amucU8kDfK6VpO3YuJlm-CIVmGBO4xOCbaEvu0m_5ng,720
85
+ gebpy/data_minerals/gahnite.yaml,sha256=sJgkZF8v0Oo2yoII9SIS33o6QQY3X2KucWZAR_DxXrY,719
86
+ gebpy/data_minerals/galaxite.yaml,sha256=WNOpBQGsQNvtPHW_fVqAIGX3WyswexqWWTPsZeNC8io,720
87
+ gebpy/data_minerals/geikielite.yaml,sha256=x-20PsYv4SlEAUAWsTktF922d3ZXY4meXljNAC232Oo,772
88
+ gebpy/data_minerals/gibbsite.yaml,sha256=4D7kN5rJWujOGmRRJjMrf0yNUU8h1NcogtQPDlHhTzo,886
89
+ gebpy/data_minerals/glauconite.yaml,sha256=eqLMnMFcz1wyQ0Nk3pmiKe8UvLz4revfaOVk_clKJ_8,1065
90
+ gebpy/data_minerals/goethite.yaml,sha256=ICUsYbrATz4VYIAf6eJ7gQqeu07Xf5MFcWYXY8qFNJY,827
91
+ gebpy/data_minerals/groutite.yaml,sha256=sC4z4sb9cYVI-iRxfhrYwS0Sa6WWg01SRalJnLBHkps,828
92
+ gebpy/data_minerals/hematite.yaml,sha256=LZVwv0k5M2IFIxXB9WWKfTQz5NEKkWSiQhO5_l0DSwA,756
93
+ gebpy/data_minerals/hercynite.yaml,sha256=6NNF_z4vNnoRyLX7yeJNc5GjHO19cJDFiaPXh47HPXM,720
94
+ gebpy/data_minerals/huebnerite.yaml,sha256=jMEaG1mfmoCwBpE2lSSZNClvjtQ9OXqPMdOObqjdtVw,881
95
+ gebpy/data_minerals/ikaite.yaml,sha256=oMeq81Uxi-9Wcqvo_15fdJ9LVz8bGfalfrwcwFVnbY4,887
96
+ gebpy/data_minerals/illite.yaml,sha256=jh-qoXPKLke9L_xjiD9dOedilerBD4YiGQ6v70_LG7o,823
97
+ gebpy/data_minerals/ilmenite.yaml,sha256=qZNaQucd_ruxfNOC6IvqBiDfYXpevi1U4ONE0aAptWI,769
98
+ gebpy/data_minerals/jacobsite.yaml,sha256=kWCO_CrVXLjStCXfiugnp7-C5L1Bi6zEbcJnNe2eXTo,719
99
+ gebpy/data_minerals/kalsilite.yaml,sha256=EwqJb9qb1jjkjFhzneKGOhfNY1-knaBLSfzffYHt0lk,800
100
+ gebpy/data_minerals/kaolinite.yaml,sha256=s9f91U-UeaWY7DUqNk6lOkdexQUuM1XmLVqvMdFAkw8,893
101
+ gebpy/data_minerals/karelianite.yaml,sha256=YDWGojqJzw5g13hM0mpGYvoXnuh0gzHMih4fUxgvb5M,752
102
+ gebpy/data_minerals/lime.yaml,sha256=ZdCuPBqyFGPpkELqFANIKVOpbSoVkYVLcn608nrZ-_I,689
103
+ gebpy/data_minerals/litharge.yaml,sha256=viqcsrwL2dkYtn46xImULZZ3uP3uTtjB4tauvdDtwAI,752
104
+ gebpy/data_minerals/magnesiochromite.yaml,sha256=SUSbsJp33-fsG27wMBz2prZjLGvrFvmViFbnpqVIflA,729
105
+ gebpy/data_minerals/magnesioferrite.yaml,sha256=380NCF23uacEcsHxhOk1PSjBDFOSHlf4bw0QhdaqCf8,727
106
+ gebpy/data_minerals/magnesite.yaml,sha256=M92FyNRt-hJkE1E6lZjNyMubRywtYFDV6Y3C17QopQU,730
107
+ gebpy/data_minerals/magnetite.yaml,sha256=R_J66_ox4QbBSVH_HxdpXx0OfdT4180TD8Sg4UGx6A8,741
108
+ gebpy/data_minerals/malachite.yaml,sha256=dEEQm3c-yi-ciupPfMmXheDyxt4QMDCfSlFsv5YXTxo,885
109
+ gebpy/data_minerals/manganite.yaml,sha256=GapLqDx6Bkgpx_2U6U10qRbSFWNSmvrfgFUe0JTCqus,880
110
+ gebpy/data_minerals/manganochromite.yaml,sha256=0XpxmglDnpcNFSvSMd_TeZpl8tg7SMuC84UpvQC5Zy0,729
111
+ gebpy/data_minerals/manganosite.yaml,sha256=ZHf94ciUKaytzjBk_Elt41JuUSC4DrXiVIZ3IYxyR3k,698
112
+ gebpy/data_minerals/marialite.yaml,sha256=9C2lDUL-iwYa618mzr5u72mosFagzt3kw2OZO3hrI4E,830
113
+ gebpy/data_minerals/massicot.yaml,sha256=8I5SWZfzgdJdCQs1j_wWVgXkSGjE1f0mDxECfBi7ric,807
114
+ gebpy/data_minerals/meionite.yaml,sha256=XJrzdI27yDXrjQeceffsglCvYQDg3ZiPYepWwYCA7Mk,826
115
+ gebpy/data_minerals/mgchlorite.yaml,sha256=Lu5q64scj5G7PBAjQZ3nYPdXnhZ2n5PmRAFTamixClQ,1082
116
+ gebpy/data_minerals/mgcolumbite.yaml,sha256=dOydXrvZ3rTrhhG5JXL5NG9NIF-GAOK9j5vVTDaw3uQ,836
117
+ gebpy/data_minerals/mgtantalite.yaml,sha256=H_QZ2lk9mNdrp1Go-XUsSzkYo8oYpeOIVY1yNDqrReo,839
118
+ gebpy/data_minerals/microcline.yaml,sha256=IbYLmAeNIXLQMK65na_G6v9eoS0UGPb-ttHRWLUMbB0,1105
119
+ gebpy/data_minerals/minium.yaml,sha256=SuWZuAJlBmGTUxGGtRgWiEmiFkjoJkbsThcV6AHewB4,795
120
+ gebpy/data_minerals/mnchlorite.yaml,sha256=dNOk8_a3YPq00OdvwlakJ0mWrAaEaLC1sQ4j7-XKZgs,1085
121
+ gebpy/data_minerals/mncolumbite.yaml,sha256=Ps09JCBhCDn4MNAgVXhzrIWqRCvtx-PgxtxVAd8LkDI,839
122
+ gebpy/data_minerals/mntantalite.yaml,sha256=lrwi7B7q1J_URo9xl9VIixKdJrOFE53fmpi78-NP2DU,839
123
+ gebpy/data_minerals/monteponite.yaml,sha256=SRd74rejfxftEW2LsCnxV1EHdFqrz6XQaBOAgp3eK0g,699
124
+ gebpy/data_minerals/montmorillonite.yaml,sha256=sQxf5nvYjXu9fkX2BvN3xWz3qAsnfDpCaDnkp_4FgyI,1388
125
+ gebpy/data_minerals/muscovite.yaml,sha256=hJbqCdOu3ez-6woIy0QqEYc-iF4DCPfOU_kHj3atzqE,887
126
+ gebpy/data_minerals/nanepheline.yaml,sha256=gP3qTbevxDIzHGzP0fDC4oGzuske-8raeIw-mdOSlRI,809
127
+ gebpy/data_minerals/nichlorite.yaml,sha256=4jLS13h0Z2YxFzhJ62R7sOYqrmfRNj3447vcWGrcHXc,1087
128
+ gebpy/data_minerals/nichromite.yaml,sha256=y0ZvU9YuKi5OtL5BtfrFQlsMdexqmTRmvFituvZgqxE,724
129
+ gebpy/data_minerals/nimite.yaml,sha256=DdrBKqSbk-xMxRudZslDyr6y-Ns04xacX2qZcTpNaZY,892
130
+ gebpy/data_minerals/nontronite.yaml,sha256=2Ylu2aSfFBF80KIyAwC1R5z66VtWq7yk-2g_RByRwbQ,1272
131
+ gebpy/data_minerals/orthoclase.yaml,sha256=eHgTsW3VL2WfK35VROgV9TKvvJ1luriYQeDW4zALQW0,971
132
+ gebpy/data_minerals/paratellurite.yaml,sha256=-BjEgCd1PSoqMxYTDLbtFgp8bWxsa_IqT99DTLKsWNM,759
133
+ gebpy/data_minerals/pennantite.yaml,sha256=NJydkbCgAQu4jcH38wm9ho1XuvZI0f0IsRwjbFkrrlA,1020
134
+ gebpy/data_minerals/periclase.yaml,sha256=Y-qsb9xMjuAvh0VD_NdGqK05IyBTv-NcHzeTGn1sOVo,697
135
+ gebpy/data_minerals/phlogopite.yaml,sha256=R-ssZQtcQeZrd3uX2GvhKmNSIS3_AASmiQheD9c3NvI,1021
136
+ gebpy/data_minerals/plattnerite.yaml,sha256=KnHBArxH_eE3AIQ1vGpDJhfSkdwsQgWugDU58WlT5Zk,758
137
+ gebpy/data_minerals/powellite.yaml,sha256=2ELBAjZ5_dhRJqm0Ain318P8m1ppdy1MYcz62i1C0sM,772
138
+ gebpy/data_minerals/pyrite.yaml,sha256=02UiZNPBAOZXvxkhDZC_0VeRtCCVmWW_ve-IpXcYm7A,729
139
+ gebpy/data_minerals/pyrolusite.yaml,sha256=bXjoO7Pb3yCfuY4fbXi4Z6PDziTyclAXZs1g07uBAW8,757
140
+ gebpy/data_minerals/pyrophanite.yaml,sha256=R_TBen3eIvV5_pl4unh4hQuI9vyDDS-XO1rO6PYsIl4,774
141
+ gebpy/data_minerals/pyrophyllite.yaml,sha256=iTZ86mBrPI_OIrbpmpRQiireONmcqq17j0ZEsLdfPk8,996
142
+ gebpy/data_minerals/quartz.yaml,sha256=8Q3B8XGJvwa06BUuC2IEWOUve0NZnC5JpfS6Wis7pxQ,791
143
+ gebpy/data_minerals/rhodochrosite.yaml,sha256=pgsvaXu1PCf6boT2rFhVY2seuOt-g1QIRzPf08A9Rfc,731
144
+ gebpy/data_minerals/rutile.yaml,sha256=ePwMQpecvuyY-RNxD7HGWt_Vxx-JVLzwrWaqfvILXQE,753
145
+ gebpy/data_minerals/saponite.yaml,sha256=sUr4SN373zwdg5seH7VUAHtTBUYoV8CHdXhrbPp0zhA,1329
146
+ gebpy/data_minerals/scheelite.yaml,sha256=DONun4tvmNOrcIK2iQU2FN-1WEFtfCNQg-CEfchcTFY,771
147
+ gebpy/data_minerals/scrutinyite.yaml,sha256=BmrtCDMqkCOwIZF9Tz5_IrJL5_m1T4ZMTWYDy507gJ0,814
148
+ gebpy/data_minerals/senarmontite.yaml,sha256=CPv_5jnYIeVTGUw6pmCHF5Hv2IA4kdi0FW9MvsCePuY,705
149
+ gebpy/data_minerals/siderite.yaml,sha256=kL08sB7m_HDGuPgXrduTwrJ7YXZCzvewH7ggKxEcplk,730
150
+ gebpy/data_minerals/siderophyllite.yaml,sha256=ibg04lpTZ6yYfLud-_spacp1w1WPPfOZj-_mI1ztteE,1023
151
+ gebpy/data_minerals/smithsonite.yaml,sha256=RtxjGRFw38_Tw5kjKfzqTno9ZTIfZjHzian2yYkjQaw,733
152
+ gebpy/data_minerals/spinel.yaml,sha256=visYeSyUpvPGid-tuiARBj98lH8Wi1ZVWur2wzkn1dY,715
153
+ gebpy/data_minerals/stishovite.yaml,sha256=A2SsAH0K1LIAhllTC4L1_fH7AsI5l9COtiaqJnCI7zA,759
154
+ gebpy/data_minerals/stolzite.yaml,sha256=XqFUiZ-Nvc5dYBc7pvpoI-FQSFbODvcPC4pWBRkG7Tg,767
155
+ gebpy/data_minerals/talc.yaml,sha256=2gMKCQF6hxR2RJHvbQrtziOqvg21B2UHU7qkpxIh0fY,862
156
+ gebpy/data_minerals/tistarite.yaml,sha256=No_qLr7IiIdVhdQhY7nhMMWTX0-DcSotsAPKIHnlU_8,755
157
+ gebpy/data_minerals/trevorite.yaml,sha256=jzqnc-eaxymn_yAX2jFgjxMxXozZ0FHfGD9e8M1wEvs,720
158
+ gebpy/data_minerals/ulvoespinel.yaml,sha256=49XWY0bKCtvQ_BoUrV7X0lkEL7kRqnDrosm870gusFg,723
159
+ gebpy/data_minerals/uraninite.yaml,sha256=MglrEUFl23MsPl-52EgBdVLR8V6UNZBko5tdBpFCfsU,696
160
+ gebpy/data_minerals/valentinite.yaml,sha256=8bPO5Jhn528nkuu5_u74fhmYTrqY6nw6zdLGZHElcwE,810
161
+ gebpy/data_minerals/vermiculite.yaml,sha256=kjH5DTta1JaAViL1GDT7b9IjLGlrr64nMg7Mgp0PmcE,1234
162
+ gebpy/data_minerals/wulfenite.yaml,sha256=vwH4LoXow7jj3dRzymt4XhdfP3Yfq7vMNcaeDqT9iyY,780
163
+ gebpy/data_minerals/wustite.yaml,sha256=dnfTTzFYGvff3VLW-3KSyJufpUMDg6BK5CCqhpWCfyQ,694
164
+ gebpy/data_minerals/zincite.yaml,sha256=KF5FjsnjRta6_ymfNLDk6rHCiJUCAvm8ttHHGHDaSkM,751
165
+ gebpy/data_minerals/zincochromite.yaml,sha256=pxghnhyX0tVjYroJ1Vpcb1Y1XbfDo9WZX_WJsKVQMNo,726
166
+ gebpy/data_rocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ gebpy/data_rocks/dolostone.yaml,sha256=9uot7kc5qmlm6hi6VNhPc7HZqhs8-Bdv1rYw5wd04dk,531
168
+ gebpy/data_rocks/limestone.yaml,sha256=EvL31JKcl1nOYF1ETn34q_GYV6hO8x2NttsfoUj5KgI,531
169
+ gebpy/data_rocks/marl.yaml,sha256=RCkiJqCiB2_B1wVZ1C6cejI74aDKLSiVJKm0vNKYR0w,674
170
+ gebpy/data_rocks/sandstone.yaml,sha256=BocP1HeR7ZbWAfMacbYhNJlSXhqN_GW21VVo-YXUn74,537
171
+ gebpy/data_rocks/shale.yaml,sha256=0PL6WigxoUFK3gZ1TxRVO0SniMw_UrN7DXg3EAZDbkk,682
172
+ gebpy/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
+ gebpy/lib/images/GebPy_Header.png,sha256=ieX6UnaFV28kH7NonvoqSGxBw37kIqWN62xKwvnPSsg,20528
174
+ gebpy/lib/images/GebPy_Icon.png,sha256=15MQJSMMJ6dTifEeViNpuLuazqBSIb9eZuq62YGy-wI,133717
175
+ gebpy/lib/images/GebPy_Logo.png,sha256=15MQJSMMJ6dTifEeViNpuLuazqBSIb9eZuq62YGy-wI,133717
176
+ gebpy/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ gebpy/modules/carbonates.py,sha256=X-f0qUOqHUfs1SRcd6Wx4vg5FUZBIscqYmIn8h6R50s,123318
178
+ gebpy/modules/chemistry.py,sha256=CCYQBuXlcPC6egjubNmsI1dC-vyxWjlrcQEXoU_0X4k,69095
179
+ gebpy/modules/core.py,sha256=XV8HTowKhbJv4hRBbiHIGCQg0MBnXjq08QEU9FNgIeA,119051
180
+ gebpy/modules/elements.py,sha256=libaoynOnM2hTLRhXlJ6vIfrWZNpz2hmax0k093Hy0M,15098
181
+ gebpy/modules/evaporites.py,sha256=ln1Wfh9XoxsvqOpaSwtZ1YMrkpuYUvM2PBCssWEdWfs,64975
182
+ gebpy/modules/exploration.py,sha256=OOAlmu1ljFqfSOO0wxlBCryYlL5vYH5iGzGEwuPsI8Y,59078
183
+ gebpy/modules/fluids.py,sha256=lsDTMvUY4UAkCv6ldXzGDkGUN3pvywQJDuiBFoyFuYo,11688
184
+ gebpy/modules/geochemistry.py,sha256=aziQm8WABygr31mYdS26I7jJHC2svbVUrum7e83Pmkw,74471
185
+ gebpy/modules/geophysics.py,sha256=wT6eCTYwswTvzye0uYB4KjDqHfsXRSldr9kZfptk0cA,11189
186
+ gebpy/modules/gui.py,sha256=JhVnBazPOYpyZgTTgHO-uTr4my7zv3m4NvSnMDnM3UI,619163
187
+ gebpy/modules/gui_elements.py,sha256=RI5dCFDv5bm_c7NqY51Kwbjfscu7TBdMPcgbIo8D9x4,7074
188
+ gebpy/modules/halides.py,sha256=zgY-2fwqmbj0jxv9SWQiwdEjDmiBsosEsc7Lpohxggg,20120
189
+ gebpy/modules/igneous.py,sha256=fTRd5fa5djo96YMsDCyn2SMmhedZFqx5wOCZ8lSE7RE,111707
190
+ gebpy/modules/metamorphics.py,sha256=RjBR-1iuBwKF0qc7gizdUIbxYqJENhfcIFJUzsUSiX0,162796
191
+ gebpy/modules/mineralogy.py,sha256=uXr-VroqdL7RHPnSWRFnU_6KzpJqEQWy6BluXCGtJfo,26921
192
+ gebpy/modules/minerals.py,sha256=p5ij_30RT95U6zjTdWhhfP0r2kKB4Nn74tE9t1i17eU,301836
193
+ gebpy/modules/ore.py,sha256=55HFv9JBbL7_DYGHF_LPRjXwTtCN3J9do_E17vduYvs,83924
194
+ gebpy/modules/organics.py,sha256=OiuKBEAGnm11XaasE8Vzmz7kq1E3TbnIfAxE253Q7fk,22518
195
+ gebpy/modules/oxides.py,sha256=19DWrjogQ5vj_q_HTz7we1tP4sBZ0kYQjwuNOqP3P-w,378102
196
+ gebpy/modules/petrophysics.py,sha256=U2FppzgYpnxuygA24Z7KkL_H7qaYMrnAFav5fisdpTk,3629
197
+ gebpy/modules/phosphates.py,sha256=fbuVfeO_xZYQvo_uW8TI6_Ojokvw0ody9Uf8umE3v8M,26398
198
+ gebpy/modules/phospides.py,sha256=clxf8AikbsshVjpiPb46BRLxBVGca5CNguRq9ux5sz0,7828
199
+ gebpy/modules/plotting.py,sha256=L2iKUAlhwemTCavW9xNvmckCiu2QO9SdULte6ljRbIY,33314
200
+ gebpy/modules/pyllosilicates.py,sha256=vEVwAmTlHWBrnRZfQ_b4Pwcx_CzWTbK3jFo9GZ6-NHM,16785
201
+ gebpy/modules/sedimentary_rocks.py,sha256=URefmwWZS0HRByUUGbA1P-5Vb5pYMaF5Gxqoy0UFMvc,48653
202
+ gebpy/modules/sequences.py,sha256=8Uvtep893d11Gq7iCgIz7mMZvblzwXKsfk5u7bCzO10,119358
203
+ gebpy/modules/series.py,sha256=1KxNSQEMrQtZo4fceNFx-oyeJZoNG2-cKBXlpND4upI,83661
204
+ gebpy/modules/silicates.py,sha256=T6sDGD-UlV91QnheeH0TntHk_ygzZvh3GmE17SgcmiE,494051
205
+ gebpy/modules/siliciclastics.py,sha256=YhVVuv4SzI6Dx5L7kJAmMXCXTCFC-25Wln3gN_ditlU,93058
206
+ gebpy/modules/subsurface_2d.py,sha256=h8EqORkyQOC4gDJuH5uYJf9EdKMUDmfJj7-XMW0h1BY,6864
207
+ gebpy/modules/sulfates.py,sha256=LB6Ua3fQlWt3BbP2HKA2Z2gZKPaCnbJIXJIBXi4c-DI,70064
208
+ gebpy/modules/sulfides.py,sha256=YPurdS_zLLwigD0lSt2bn9nQtSTkHL5jS5p3ZmsEdGE,206790
209
+ gebpy/modules/__pycache__/__init__.cpython-310.pyc,sha256=AzpZXAEGDvxlGKuL5Rkfwciq5ZHusRozJmLGPn_e3vg,158
210
+ gebpy/modules/__pycache__/metamorphics.cpython-310.pyc,sha256=aj17RLGi4A8gOb6ekUC5rcBhX0Be9TgFfaEIioUFBOg,51969
211
+ gebpy/modules/__pycache__/silicates.cpython-310.pyc,sha256=anYdMxTEjiPAWq5f6V7AgX430B3melbYxll9DpJ8njk,239887
212
+ gebpy/plotting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
213
+ gebpy/ui_nb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ gebpy/user_data/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
215
+ modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ modules/carbonates.py,sha256=X-f0qUOqHUfs1SRcd6Wx4vg5FUZBIscqYmIn8h6R50s,123318
217
+ modules/chemistry.py,sha256=CCYQBuXlcPC6egjubNmsI1dC-vyxWjlrcQEXoU_0X4k,69095
218
+ modules/core.py,sha256=XV8HTowKhbJv4hRBbiHIGCQg0MBnXjq08QEU9FNgIeA,119051
219
+ modules/elements.py,sha256=libaoynOnM2hTLRhXlJ6vIfrWZNpz2hmax0k093Hy0M,15098
220
+ modules/evaporites.py,sha256=ln1Wfh9XoxsvqOpaSwtZ1YMrkpuYUvM2PBCssWEdWfs,64975
221
+ modules/exploration.py,sha256=P1scCUaONRGTNAZjy9-jEMZVMZBOZcIB2zzZO_BQza4,43168
222
+ modules/fluids.py,sha256=lsDTMvUY4UAkCv6ldXzGDkGUN3pvywQJDuiBFoyFuYo,11688
223
+ modules/geochemistry.py,sha256=aziQm8WABygr31mYdS26I7jJHC2svbVUrum7e83Pmkw,74471
224
+ modules/geophysics.py,sha256=Kw3f_Msu6n5Aell3lZ5fgdsa3bmnKgCTPKoy9QFGVyk,10665
225
+ modules/gui.py,sha256=JhVnBazPOYpyZgTTgHO-uTr4my7zv3m4NvSnMDnM3UI,619163
226
+ modules/gui_elements.py,sha256=RI5dCFDv5bm_c7NqY51Kwbjfscu7TBdMPcgbIo8D9x4,7074
227
+ modules/halides.py,sha256=zgY-2fwqmbj0jxv9SWQiwdEjDmiBsosEsc7Lpohxggg,20120
228
+ modules/igneous.py,sha256=1RRV4jZQOomOcqnu8QVfqbDOKVNIi6rJa98xrx9aC3Q,108569
229
+ modules/metamorphics.py,sha256=kyuFn4Pdah91rbQT_PBcNZHnMRB98-w_fC3B0FePgrY,140156
230
+ modules/mineralogy.py,sha256=uXr-VroqdL7RHPnSWRFnU_6KzpJqEQWy6BluXCGtJfo,26921
231
+ modules/minerals.py,sha256=p5ij_30RT95U6zjTdWhhfP0r2kKB4Nn74tE9t1i17eU,301836
232
+ modules/ore.py,sha256=EU__pp_qygLmry17zTMt4EYiFkvi7Hzrv2tDFImvjpw,82858
233
+ modules/organics.py,sha256=OiuKBEAGnm11XaasE8Vzmz7kq1E3TbnIfAxE253Q7fk,22518
234
+ modules/oxides.py,sha256=19DWrjogQ5vj_q_HTz7we1tP4sBZ0kYQjwuNOqP3P-w,378102
235
+ modules/petrophysics.py,sha256=U2FppzgYpnxuygA24Z7KkL_H7qaYMrnAFav5fisdpTk,3629
236
+ modules/phosphates.py,sha256=fbuVfeO_xZYQvo_uW8TI6_Ojokvw0ody9Uf8umE3v8M,26398
237
+ modules/phospides.py,sha256=clxf8AikbsshVjpiPb46BRLxBVGca5CNguRq9ux5sz0,7828
238
+ modules/plotting.py,sha256=L2iKUAlhwemTCavW9xNvmckCiu2QO9SdULte6ljRbIY,33314
239
+ modules/pyllosilicates.py,sha256=vEVwAmTlHWBrnRZfQ_b4Pwcx_CzWTbK3jFo9GZ6-NHM,16785
240
+ modules/sedimentary_rocks.py,sha256=URefmwWZS0HRByUUGbA1P-5Vb5pYMaF5Gxqoy0UFMvc,48653
241
+ modules/sequences.py,sha256=8Uvtep893d11Gq7iCgIz7mMZvblzwXKsfk5u7bCzO10,119358
242
+ modules/series.py,sha256=1KxNSQEMrQtZo4fceNFx-oyeJZoNG2-cKBXlpND4upI,83661
243
+ modules/silicates.py,sha256=T6sDGD-UlV91QnheeH0TntHk_ygzZvh3GmE17SgcmiE,494051
244
+ modules/siliciclastics.py,sha256=Pg_fFQcm6LEeUjoLjgDzcVJBAVOkua4VaVrmXMlDrEU,92262
245
+ modules/subsurface_2d.py,sha256=h8EqORkyQOC4gDJuH5uYJf9EdKMUDmfJj7-XMW0h1BY,6864
246
+ modules/sulfates.py,sha256=LB6Ua3fQlWt3BbP2HKA2Z2gZKPaCnbJIXJIBXi4c-DI,70064
247
+ modules/sulfides.py,sha256=YPurdS_zLLwigD0lSt2bn9nQtSTkHL5jS5p3ZmsEdGE,206790
248
+ notebooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
249
+ gebpy-1.1.3.dist-info/LICENSE,sha256=2n6rt7r999OuXp8iOqW9we7ORaxWncIbOwN1ILRGR2g,7651
250
+ gebpy-1.1.3.dist-info/METADATA,sha256=s5FzbXmMWLVCqzP3lpsUcmJJwfrJLuTLjch-QoeibIo,5980
251
+ gebpy-1.1.3.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
252
+ gebpy-1.1.3.dist-info/entry_points.txt,sha256=0aqVQEn5ZT5CvW6Bmaw7m5-pceZQef7pQNWULlF1SHo,48
253
+ gebpy-1.1.3.dist-info/top_level.txt,sha256=46P-cbYv1iSBIvqBbpXH6ULpcrDEx6W4mviUhHJVGJ4,6
254
+ gebpy-1.1.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.37.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gebpy = gebpy.gebpy_app:gebpy
@@ -0,0 +1 @@
1
+ gebpy
modules/__init__.py ADDED
File without changes