petthermotools 0.2.49__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.
- petthermotools-0.2.49/LICENSE.txt +16 -0
- petthermotools-0.2.49/PKG-INFO +21 -0
- petthermotools-0.2.49/README.md +7 -0
- petthermotools-0.2.49/setup.cfg +4 -0
- petthermotools-0.2.49/setup.py +48 -0
- petthermotools-0.2.49/src/petthermotools/Barom.py +1090 -0
- petthermotools-0.2.49/src/petthermotools/Compositions.py +38 -0
- petthermotools-0.2.49/src/petthermotools/GenFuncs.py +463 -0
- petthermotools-0.2.49/src/petthermotools/Holland.py +191 -0
- petthermotools-0.2.49/src/petthermotools/Installation.py +151 -0
- petthermotools-0.2.49/src/petthermotools/Liq.py +931 -0
- petthermotools-0.2.49/src/petthermotools/MELTS.py +1765 -0
- petthermotools-0.2.49/src/petthermotools/Melting.py +379 -0
- petthermotools-0.2.49/src/petthermotools/Path.py +801 -0
- petthermotools-0.2.49/src/petthermotools/Path_wrappers.py +643 -0
- petthermotools-0.2.49/src/petthermotools/PhaseDiagrams.py +743 -0
- petthermotools-0.2.49/src/petthermotools/Plotting.py +846 -0
- petthermotools-0.2.49/src/petthermotools/Saturation.py +692 -0
- petthermotools-0.2.49/src/petthermotools/__init__.py +57 -0
- petthermotools-0.2.49/src/petthermotools/_version.py +8 -0
- petthermotools-0.2.49/src/petthermotools.egg-info/PKG-INFO +21 -0
- petthermotools-0.2.49/src/petthermotools.egg-info/SOURCES.txt +23 -0
- petthermotools-0.2.49/src/petthermotools.egg-info/dependency_links.txt +1 -0
- petthermotools-0.2.49/src/petthermotools.egg-info/requires.txt +9 -0
- petthermotools-0.2.49/src/petthermotools.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) [2025] [Matthew Gleeson]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
Special Clause on GUI Usage
|
|
10
|
+
|
|
11
|
+
Use of PetThermoTools in graphical user interfaces (GUIs), including but not limited to applications that provide point-and-click access to PetThermoTools's functions, requires prior written permission from the author.
|
|
12
|
+
|
|
13
|
+
This requirement exists because of a broader issue in the geoscience community: tools that wrap or interface with core scientific software often receive the bulk of citations, while foundational packages like PetThermoTools go unrecognized—particularly when journals impose citation limits. PetThermoTools represents a significant and ongoing labor investment. Responsible citation and acknowledgment are necessary to support its continued development and maintenance.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
16
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: petthermotools
|
|
3
|
+
Version: 0.2.49
|
|
4
|
+
Summary: petthermotools
|
|
5
|
+
Home-page: https://github.com/gleesonm1/PetThermoTools
|
|
6
|
+
Author: Matthew Gleeson
|
|
7
|
+
Author-email: gleesonm@berkeley.edu
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Description: ## ReadTheDocs
|
|
10
|
+
|
|
11
|
+
For instructions on the installation and use of PetThermoTools please visit our readthedocs page.
|
|
12
|
+
|
|
13
|
+
https://PetThermoTools.readthedocs.io/en/latest/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Platform: UNKNOWN
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
from setuptools import setup, find_packages
|
|
3
|
+
from os import path
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
this_directory = path.abspath(path.dirname(__file__))
|
|
7
|
+
|
|
8
|
+
with open(path.join(this_directory, 'src', 'petthermotools', '_version.py'), encoding='utf-8') as f:
|
|
9
|
+
exec(f.read())
|
|
10
|
+
|
|
11
|
+
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
12
|
+
long_description = f.read()
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
setup(
|
|
16
|
+
name="petthermotools",
|
|
17
|
+
version=__version__,
|
|
18
|
+
author="Matthew Gleeson",
|
|
19
|
+
author_email="gleesonm@berkeley.edu",
|
|
20
|
+
description="petthermotools",
|
|
21
|
+
long_description=long_description,
|
|
22
|
+
long_description_content_type="text/markdown",
|
|
23
|
+
url="https://github.com/gleesonm1/PetThermoTools",
|
|
24
|
+
package_dir={'': 'src'}, # Optional
|
|
25
|
+
packages=find_packages(where='src', include=['petthermotools', 'petthermotools.*']), # Required
|
|
26
|
+
|
|
27
|
+
package_data={
|
|
28
|
+
# Include all pickle files
|
|
29
|
+
"": ["*.jl"],
|
|
30
|
+
},
|
|
31
|
+
install_requires=[
|
|
32
|
+
'pandas',
|
|
33
|
+
'numpy',
|
|
34
|
+
'matplotlib',
|
|
35
|
+
'scikit-learn',
|
|
36
|
+
'scipy',
|
|
37
|
+
'tinynumpy',
|
|
38
|
+
'shapely',
|
|
39
|
+
'Thermobar',
|
|
40
|
+
'pyMelt'
|
|
41
|
+
],
|
|
42
|
+
|
|
43
|
+
classifiers=[
|
|
44
|
+
"Programming Language :: Python :: 3",
|
|
45
|
+
"Operating System :: OS Independent",
|
|
46
|
+
],
|
|
47
|
+
python_requires='>=3.8',
|
|
48
|
+
)
|