pyEQL 1.1.6__py3-none-any.whl → 1.3.0__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.
pyEQL/utils.py CHANGED
@@ -61,17 +61,21 @@ def standardize_formula(formula: str):
61
61
  'Na+1', and 'Na[+]' will all standardize to "Na[+1]"
62
62
  """
63
63
  # fix permuted sign and charge number (e.g. Co2+)
64
- for str, rep in zip(["²⁺", "³⁺", "⁴⁺", "²⁻", "³⁻", "⁴⁻"], ["+2", "+3", "+4", "-2", "-3", "-4"]):
64
+ for str, rep in zip(["²⁺", "³⁺", "⁴⁺", "²⁻", "³⁻", "⁴⁻"], ["+2", "+3", "+4", "-2", "-3", "-4"], strict=False):
65
65
  formula = formula.replace(str, rep)
66
66
 
67
67
  # replace superscripts with non superscripts
68
- for char, rep in zip("⁻⁺⁰¹²³⁴⁵⁶⁷⁸⁹", "-+0123456789"):
68
+ for char, rep in zip("⁻⁺⁰¹²³⁴⁵⁶⁷⁸⁹", "-+0123456789", strict=False):
69
69
  formula = formula.replace(char, rep)
70
70
 
71
71
  # replace subscripts with non subscripts
72
- for char, rep in zip("₀₁₂₃₄₅₆₇₈₉", "0123456789"):
72
+ for char, rep in zip("₀₁₂₃₄₅₆₇₈₉", "0123456789", strict=False):
73
73
  formula = formula.replace(char, rep)
74
74
 
75
+ # replace different types of dashes with a minus sign
76
+ for char in [r"‑", r"‐", r"‒", r"–", r"—", r"−"]: # noqa: RUF001
77
+ formula = formula.replace(char, "-")
78
+
75
79
  sform = Ion.from_formula(formula).reduced_formula
76
80
 
77
81
  # TODO - manual formula adjustments. May be implemented upstream in pymatgen in the future
@@ -81,18 +85,24 @@ def standardize_formula(formula: str):
81
85
  # ammonia
82
86
  if sform == "H4N[+1]":
83
87
  sform = "NH4[+1]"
88
+ elif "H4NCl" in sform:
89
+ sform = sform.replace("H4NCl", "NH4Cl")
90
+ elif sform == "SO3[-1]":
91
+ sform = "S2O6[-2]"
92
+ elif sform == "SO4[-1]":
93
+ sform = "S2O8[-2]"
84
94
  elif sform == "H3N(aq)":
85
95
  sform = "NH3(aq)"
86
96
  # phosphoric acid system
87
97
  elif sform == "PH3O4(aq)":
88
98
  sform = "H3PO4(aq)"
89
- elif sform == "PHO4[-2]":
90
- sform = "HPO4[-2]"
91
- elif sform == "P(HO2)2[-1]":
92
- sform = "H2PO4[-1]"
99
+ elif "PHO4" in sform:
100
+ sform = sform.replace("PHO4", "HPO4")
101
+ elif "P(HO2)2" in sform:
102
+ sform = sform.replace("P(HO2)2", "H2PO4")
93
103
  # thiocyanate
94
- elif sform == "CSN[-1]":
95
- sform = "SCN[-1]"
104
+ elif "CSN" in sform:
105
+ sform = sform.replace("CSN", "SCN")
96
106
  # triiodide, nitride, an phosphide
97
107
  elif sform == "I[-0.33333333]":
98
108
  sform = "I3[-1]"
@@ -137,6 +147,9 @@ def standardize_formula(formula: str):
137
147
  elif sform == "C2I2ClO2[-1]":
138
148
  sform = "CI2ClCOO[-1]"
139
149
 
150
+ # ammonium nitrate salts
151
+ elif sform == "H4N2O3(aq)":
152
+ sform = "NH4NO3(aq)"
140
153
  # ammonium sulfate salts
141
154
  elif sform == "H8S(NO2)2(aq)":
142
155
  sform = "(NH4)2SO4(aq)"
@@ -1,13 +1,13 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: pyEQL
3
- Version: 1.1.6
3
+ Version: 1.3.0
4
4
  Summary: A python interface for solution chemistry
5
5
  Author-email: Ryan Kingsbury <kingsbury@princeton.edu>
6
+ License-Expression: LGPL-3.0-or-later
6
7
  Project-URL: Docs, https://pyeql.readthedocs.io/
7
8
  Project-URL: Repo, https://github.com/KingsburyLab/pyEQL
8
9
  Project-URL: Package, https://pypi.org/project/pyEQL
9
10
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.9
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
@@ -15,40 +15,40 @@ Classifier: Development Status :: 4 - Beta
15
15
  Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Topic :: Scientific/Engineering
18
- Requires-Python: >=3.9
18
+ Requires-Python: >=3.10
19
19
  Description-Content-Type: text/markdown
20
20
  License-File: LICENSE.txt
21
- License-File: COPYING
22
21
  License-File: AUTHORS.md
23
- Requires-Dist: pint >=0.19
24
- Requires-Dist: numpy <2,>1.26
25
- Requires-Dist: scipy >=1.12
26
- Requires-Dist: pymatgen ==2024.5.1
27
- Requires-Dist: iapws >=1.5.3
28
- Requires-Dist: monty >=2024.7.12
29
- Requires-Dist: maggma >=0.67.0
30
- Requires-Dist: phreeqpython >=1.5.2
22
+ Requires-Dist: pint>=0.24.4
23
+ Requires-Dist: numpy>1.26
24
+ Requires-Dist: scipy>=1.12
25
+ Requires-Dist: pymatgen>=2025.1.9
26
+ Requires-Dist: iapws>=1.5.3
27
+ Requires-Dist: monty>=2024.12.10
28
+ Requires-Dist: maggma>=0.71.4
29
+ Requires-Dist: phreeqpython>=1.5.2
30
+ Provides-Extra: testing
31
+ Requires-Dist: setuptools>=68; extra == "testing"
32
+ Requires-Dist: pre-commit>=2; extra == "testing"
33
+ Requires-Dist: pytest>=7; extra == "testing"
34
+ Requires-Dist: pytest-cov>=2.11; extra == "testing"
35
+ Requires-Dist: pytest-xdist>2; extra == "testing"
36
+ Requires-Dist: black; extra == "testing"
37
+ Requires-Dist: mypy>1; extra == "testing"
38
+ Requires-Dist: ruff>0.0.100; extra == "testing"
39
+ Requires-Dist: tox<4; extra == "testing"
31
40
  Provides-Extra: docs
32
- Requires-Dist: sphinx >=3.2.1 ; extra == 'docs'
33
- Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
34
- Requires-Dist: myst-parser[linkify] ; extra == 'docs'
41
+ Requires-Dist: sphinx>=3.2.1; extra == "docs"
42
+ Requires-Dist: sphinx-rtd-theme; extra == "docs"
43
+ Requires-Dist: myst-parser[linkify]; extra == "docs"
35
44
  Provides-Extra: full
36
- Requires-Dist: rich ; extra == 'full'
37
- Provides-Extra: testing
38
- Requires-Dist: setuptools >=68 ; extra == 'testing'
39
- Requires-Dist: pre-commit >=2 ; extra == 'testing'
40
- Requires-Dist: pytest >=7 ; extra == 'testing'
41
- Requires-Dist: pytest-cov >=2.11 ; extra == 'testing'
42
- Requires-Dist: pytest-xdist >2 ; extra == 'testing'
43
- Requires-Dist: black ; extra == 'testing'
44
- Requires-Dist: mypy >1 ; extra == 'testing'
45
- Requires-Dist: ruff >0.0.100 ; extra == 'testing'
46
- Requires-Dist: tox <4 ; extra == 'testing'
45
+ Requires-Dist: rich; extra == "full"
46
+ Dynamic: license-file
47
47
 
48
48
  [![Read the Docs](https://img.shields.io/readthedocs/pyeql)](https://pyeql.readthedocs.io/en/latest/)
49
49
  [![testing](https://github.com/KingsburyLab/pyeql/workflows/testing/badge.svg)](https://github.com/KingsburyLab/pyeql/actions?query=workflow%3Atesting)
50
50
  [![codecov](https://codecov.io/gh/KingsburyLab/pyeql/branch/main/graph/badge.svg?token=I7RP0QML6S)](https://codecov.io/gh/KingsburyLab/pyeql)
51
- ![Supported python versions](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue)
51
+ ![Supported python versions](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue)
52
52
  [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8332915.svg)](https://doi.org/10.5281/zenodo.8332915)
53
53
  [![PyPI version](https://badge.fury.io/py/pyEQL.svg)](https://badge.fury.io/py/pyEQL)
54
54
  [![status](https://joss.theoj.org/papers/bdd9e247ea9736a0fdbbd5fe12bef7a6/status.svg)](https://joss.theoj.org/papers/bdd9e247ea9736a0fdbbd5fe12bef7a6)
@@ -112,7 +112,7 @@ Detailed documentation is available at [https://pyeql.readthedocs.io/](https://p
112
112
 
113
113
  ### Dependencies
114
114
 
115
- - Python 3.9+. This project will attempt to adhere to NumPy's
115
+ - Python 3.10+. This project will attempt to adhere to NumPy's
116
116
  [NEP 29](https://numpy.org/neps/nep-0029-deprecation_policy.html) deprecation policy
117
117
  for older version of Python.
118
118
  - [pint](https://github.com/hgrecco/pint) - for units-aware calculations
@@ -0,0 +1,26 @@
1
+ pyEQL/__init__.py,sha256=yqblN0G2ussRNrcq1Icf0CjgBtbG2T5a0nwbXxrttCM,2009
2
+ pyEQL/activity_correction.py,sha256=P8fYWE4OJh41JMg2JEfzP9fYWpXuprRcw5kbkWQILMw,37172
3
+ pyEQL/engines.py,sha256=D7FQsi9GA9G-RQmGeBPmECWsARRR5wokcFb5gM_mWmU,34445
4
+ pyEQL/equilibrium.py,sha256=YZdc3zKj96Fpn-KyHwBZNwwUfeGP_pB11ImkmWlrHWg,8428
5
+ pyEQL/functions.py,sha256=xevJri40Boi_k6JMgzL-HY3ExztbI2uto0soS9OV5ko,11451
6
+ pyEQL/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ pyEQL/salt_ion_match.py,sha256=r60dsgBjfhzUCM2BvUIQTF6C37XTpuM5JI2F1t3Dc5A,4074
8
+ pyEQL/solute.py,sha256=no00Rc3tRfHmyht4wm2UXA1KZhKC45tWMO5QEkZY6yg,5140
9
+ pyEQL/solution.py,sha256=qP9w_bXRm3sjFksMPo4XqAcJH2FufmmlrIir7hUpnkM,112869
10
+ pyEQL/utils.py,sha256=dMkLhFFgvL2zUgGvEZ-gtJ8ZtVO7JB2JtEnFM839ELU,7380
11
+ pyEQL/database/geothermal.dat,sha256=kksnfcBtWdOTpNn4CLXU1Mz16cwas2WuVKpuMU8CaVI,234230
12
+ pyEQL/database/llnl.dat,sha256=jN-a0kfUFbQlYMn2shTVRg1JX_ZhLa-tJ0lLw2YSpLU,751462
13
+ pyEQL/database/phreeqc_license.txt,sha256=8W1r8VxC2kVptIMSU9sDFNASYqN7MdwKEtIWWfjTQuM,2906
14
+ pyEQL/database/pyeql_db.json,sha256=0hj_RLERTPyYbhAridUZv2ttzSe6tlyTotiJoAQfg04,1079003
15
+ pyEQL/presets/Ringers lactate.yaml,sha256=kaGiBbg_JFrmOm8xZqb_EMVqeQYxll7pOOvXcmxAJ5I,413
16
+ pyEQL/presets/normal saline.yaml,sha256=eT5MZKgc0uW-TrQOiX87ZoTwlMO-OEhTvQyQAXoIa80,318
17
+ pyEQL/presets/rainwater.yaml,sha256=QG3aol2Z5HwLj-s6frN7hYNQr01qw_HR2h5f4BdAvVc,337
18
+ pyEQL/presets/seawater.yaml,sha256=Kts0vAmXSPvPzy_PJpx0RR2uSt40izxp-687Qi02oro,843
19
+ pyEQL/presets/urine.yaml,sha256=Zpcr2Dp7xZrlLqzYk4UcMyWXlNrd2AFUexWpb8k9FEg,679
20
+ pyEQL/presets/wastewater.yaml,sha256=zJcpp9Ye4hIw6iInsdV5bgjTNuJ8oAUVimsUgZXlG-w,502
21
+ pyeql-1.3.0.dist-info/licenses/AUTHORS.md,sha256=vm40bLDv3LLqNiY0QrMfs7j8eBFg6x-5OPcu5cH4G3o,633
22
+ pyeql-1.3.0.dist-info/licenses/LICENSE.txt,sha256=2Zf1F7RzbpeposgIxUydpurqNCMoMgDi2gAB65_GjwQ,969
23
+ pyeql-1.3.0.dist-info/METADATA,sha256=JlfgJBpRaUHufqtTY4Tgjd8LEQwED7nuX7vzjTJs4To,6108
24
+ pyeql-1.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
25
+ pyeql-1.3.0.dist-info/top_level.txt,sha256=QMOaZjCAm_lS4Njsjh4L0B5aWnJFGQMYKhuH88CG1co,6
26
+ pyeql-1.3.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.0.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -6,8 +6,13 @@ developed and maintained by the Kingsbury Lab at Princeton University.
6
6
  Other contributors, listed alphabetically, are:
7
7
 
8
8
  - Arpit Bhardwaj (@abhardwaj73)
9
+ - Nikhil Dhruv (@NikhilDhruv)
9
10
  - Dhruv Duseja (@DhruvDuseja)
11
+ - @githubalexliu
10
12
  - Hernan Grecco (@hgrecco)
13
+ - @Ouriel Ndalamba (@Ouriel-N)
14
+ - Ugo Nwosu (@ugognw)
15
+ - Yitong Pan (@YitongPan1)
11
16
  - Jaebeom Park (@Jaebeom-P)
12
17
  - Kirill Pushkarev (@kirill-push)
13
18
  - Andrew Rosen (@arosen93)
@@ -1,165 +0,0 @@
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.
@@ -1,26 +0,0 @@
1
- pyEQL/__init__.py,sha256=OCp_PiQEPyVoi1VX0ursBzHJWN6nDS1Id6bTBOgqCYs,1999
2
- pyEQL/activity_correction.py,sha256=eOixjgTd5hTrTRD5s6aPCCG12lAIH7-lRN0Z1qHu678,37151
3
- pyEQL/engines.py,sha256=VbdQSPKlNehW96U1XxWYwjTy6k6WDpZZEx_Y4l3qZv4,34686
4
- pyEQL/equilibrium.py,sha256=YCtoAJSgn1WC9NJnc3H4FTJdKQvogsvCuj7HqlKMtww,8307
5
- pyEQL/functions.py,sha256=BZXkiNJWuo4ZMQSVdFQkwqQmzbSkwi-vg1DFFQuFsos,11435
6
- pyEQL/salt_ion_match.py,sha256=0nCZXmeo67VqcyYWQpPx-81hjSvnsg8HFB3fIyfjW_k,4070
7
- pyEQL/solute.py,sha256=no00Rc3tRfHmyht4wm2UXA1KZhKC45tWMO5QEkZY6yg,5140
8
- pyEQL/solution.py,sha256=3hvtqeu5KzfFKzeOdKlzS_aIFPTNgUfhjIwBurfuGJw,115754
9
- pyEQL/utils.py,sha256=zOXqg89jTqD1mPVAtlBbRxkpP9-IdHfJpK_1VDOywIQ,6828
10
- pyEQL/database/geothermal.dat,sha256=kksnfcBtWdOTpNn4CLXU1Mz16cwas2WuVKpuMU8CaVI,234230
11
- pyEQL/database/llnl.dat,sha256=jN-a0kfUFbQlYMn2shTVRg1JX_ZhLa-tJ0lLw2YSpLU,751462
12
- pyEQL/database/phreeqc_license.txt,sha256=8W1r8VxC2kVptIMSU9sDFNASYqN7MdwKEtIWWfjTQuM,2906
13
- pyEQL/database/pyeql_db.json,sha256=-7Z8tpAddXhPlvpxms7cFQKL_DSSbemzOzxm6L5vaVk,1080801
14
- pyEQL/presets/Ringers lactate.yaml,sha256=vtSnuvgALHR27XEjpDzC0xyw5-E6b2FSsF1EUEBiWpw,413
15
- pyEQL/presets/normal saline.yaml,sha256=i2znhnIeXfNx1iMFFSif7crMRCFRP6xN1m7Wp7USduM,318
16
- pyEQL/presets/rainwater.yaml,sha256=S0WHZNDfCJyjSSFxNFdkypjn2s3P0jJGCiYIxvi1ibA,337
17
- pyEQL/presets/seawater.yaml,sha256=oryc1CkhRz20RpWE6uiGiT93HoZnqlB0s-0PmBWr3-U,843
18
- pyEQL/presets/urine.yaml,sha256=0Njtc-H1fFRo7UhquHdiSTT4z-8VZJ1utDCk02qk28M,679
19
- pyEQL/presets/wastewater.yaml,sha256=jTTFBpmKxczaEtkCZb0xUULIPZt7wfC8eAJ6rthGnmw,502
20
- pyEQL-1.1.6.dist-info/AUTHORS.md,sha256=Ukdh6f3jO6jdgl2k_r_xdNOuzmjXcISMQqUTSH39QVw,506
21
- pyEQL-1.1.6.dist-info/COPYING,sha256=Ww2oUywfFTn242v9ksCgQdIVSpcMXJiKKePn0GFm25E,7649
22
- pyEQL-1.1.6.dist-info/LICENSE.txt,sha256=2Zf1F7RzbpeposgIxUydpurqNCMoMgDi2gAB65_GjwQ,969
23
- pyEQL-1.1.6.dist-info/METADATA,sha256=zV5ynllRkS-BEc8prG7c-e_7O7tR4MOvAgX2altqT08,6160
24
- pyEQL-1.1.6.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
25
- pyEQL-1.1.6.dist-info/top_level.txt,sha256=QMOaZjCAm_lS4Njsjh4L0B5aWnJFGQMYKhuH88CG1co,6
26
- pyEQL-1.1.6.dist-info/RECORD,,