richvalues 3.0.11__tar.gz → 3.0.12__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.
- richvalues-3.0.12/PKG-INFO +16 -0
- richvalues-3.0.12/README.md +3 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/pyproject.toml +1 -1
- richvalues-3.0.12/richvalues.egg-info/PKG-INFO +16 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/setup.py +2 -2
- richvalues-3.0.11/PKG-INFO +0 -18
- richvalues-3.0.11/README.md +0 -5
- richvalues-3.0.11/richvalues.egg-info/PKG-INFO +0 -18
- {richvalues-3.0.11 → richvalues-3.0.12}/richvalues/__init__.py +0 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/richvalues.egg-info/SOURCES.txt +0 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/richvalues.egg-info/dependency_links.txt +0 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/richvalues.egg-info/requires.txt +0 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/richvalues.egg-info/top_level.txt +0 -0
- {richvalues-3.0.11 → richvalues-3.0.12}/setup.cfg +0 -0
@@ -0,0 +1,16 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: richvalues
|
3
|
+
Version: 3.0.12
|
4
|
+
Summary: Python library for working with uncertainties and upper/lower limits
|
5
|
+
Home-page: https://github.com/andresmegias/richvalues/
|
6
|
+
Author: Andrés Megías Toledano
|
7
|
+
License: BSD-3-Clause
|
8
|
+
Description: RichValues is a Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
9
|
+
|
10
|
+
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues/.
|
11
|
+
|
12
|
+
Platform: UNKNOWN
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: License :: OSI Approved :: BSD License
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Description-Content-Type: text/markdown
|
@@ -0,0 +1,3 @@
|
|
1
|
+
RichValues is a Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
2
|
+
|
3
|
+
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues/.
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "richvalues"
|
7
|
-
version = "3.0.
|
7
|
+
version = "3.0.12"
|
8
8
|
description = "Python library for working with uncertainties and upper/lower limits"
|
9
9
|
license = {file="LICENSE"}
|
10
10
|
authors = [{name="Andrés Megías Toledano"}]
|
@@ -0,0 +1,16 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: richvalues
|
3
|
+
Version: 3.0.12
|
4
|
+
Summary: Python library for working with uncertainties and upper/lower limits
|
5
|
+
Home-page: https://github.com/andresmegias/richvalues/
|
6
|
+
Author: Andrés Megías Toledano
|
7
|
+
License: BSD-3-Clause
|
8
|
+
Description: RichValues is a Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
9
|
+
|
10
|
+
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues/.
|
11
|
+
|
12
|
+
Platform: UNKNOWN
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
14
|
+
Classifier: License :: OSI Approved :: BSD License
|
15
|
+
Classifier: Operating System :: OS Independent
|
16
|
+
Description-Content-Type: text/markdown
|
@@ -5,14 +5,14 @@ with open('README.md', 'r') as file:
|
|
5
5
|
|
6
6
|
setuptools.setup(
|
7
7
|
name = 'richvalues',
|
8
|
-
version = '3.0.
|
8
|
+
version = '3.0.12',
|
9
9
|
license = 'BSD-3-Clause',
|
10
10
|
author = 'Andrés Megías Toledano',
|
11
11
|
description = 'Python library for working with uncertainties and upper/lower limits',
|
12
12
|
long_description = long_description,
|
13
13
|
long_description_content_type = 'text/markdown',
|
14
14
|
packages = setuptools.find_packages('.'),
|
15
|
-
url = 'https://github.com/andresmegias/richvalues',
|
15
|
+
url = 'https://github.com/andresmegias/richvalues/',
|
16
16
|
install_requires = ['numpy', 'pandas', 'scipy', 'matplotlib'],
|
17
17
|
classifiers = [
|
18
18
|
'Programming Language :: Python :: 3',
|
richvalues-3.0.11/PKG-INFO
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: richvalues
|
3
|
-
Version: 3.0.11
|
4
|
-
Summary: Python library for working with uncertainties and upper/lower limits
|
5
|
-
Home-page: https://github.com/andresmegias/richvalues
|
6
|
-
Author: Andrés Megías Toledano
|
7
|
-
License: BSD-3-Clause
|
8
|
-
Description: # RichValues
|
9
|
-
|
10
|
-
Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
11
|
-
|
12
|
-
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues.
|
13
|
-
|
14
|
-
Platform: UNKNOWN
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
16
|
-
Classifier: License :: OSI Approved :: BSD License
|
17
|
-
Classifier: Operating System :: OS Independent
|
18
|
-
Description-Content-Type: text/markdown
|
richvalues-3.0.11/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# RichValues
|
2
|
-
|
3
|
-
Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
4
|
-
|
5
|
-
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues.
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: richvalues
|
3
|
-
Version: 3.0.11
|
4
|
-
Summary: Python library for working with uncertainties and upper/lower limits
|
5
|
-
Home-page: https://github.com/andresmegias/richvalues
|
6
|
-
Author: Andrés Megías Toledano
|
7
|
-
License: BSD-3-Clause
|
8
|
-
Description: # RichValues
|
9
|
-
|
10
|
-
Python 3 library for working with numeric values with uncertainties, upper/lower limits and finite intervals, which may be called _rich values_. With it, one can import rich values written in plain text documents in an easily readable format, operate with them propagating the uncertainties automatically, and export them in the same formatting style as the import. It also allows to easily plot rich values and to make fits to any function, taking into account the uncertainties and the upper/limits or finite intervals. Moreover, correlations between variables are taken into account when performing calculations with rich values.
|
11
|
-
|
12
|
-
The libraries NumPy, Pandas, SciPy and Matplotlib are required. An user guide is available on the GitHub repository: https://github.com/andresmegias/richvalues.
|
13
|
-
|
14
|
-
Platform: UNKNOWN
|
15
|
-
Classifier: Programming Language :: Python :: 3
|
16
|
-
Classifier: License :: OSI Approved :: BSD License
|
17
|
-
Classifier: Operating System :: OS Independent
|
18
|
-
Description-Content-Type: text/markdown
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|