rgwfuncs 0.0.57__tar.gz → 0.0.58__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/LICENSE +1 -1
- {rgwfuncs-0.0.57/src/rgwfuncs.egg-info → rgwfuncs-0.0.58}/PKG-INFO +2 -4
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/README.md +0 -2
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/pyproject.toml +2 -2
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/setup.cfg +2 -2
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58/src/rgwfuncs.egg-info}/PKG-INFO +2 -4
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/algebra_lib.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/df_lib.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs/str_lib.py +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs.egg-info/requires.txt +0 -0
- {rgwfuncs-0.0.57 → rgwfuncs-0.0.58}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: rgwfuncs
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.58
|
4
4
|
Summary: A functional programming paradigm for mathematical modelling and data science
|
5
5
|
Home-page: https://github.com/ryangerardwilson/rgwfunc
|
6
6
|
Author: Ryan Gerard Wilson
|
@@ -10,7 +10,7 @@ Project-URL: Issues, https://github.com/ryangerardwilson/rgwfuncs
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
12
12
|
Classifier: Operating System :: OS Independent
|
13
|
-
Requires-Python: >=3.
|
13
|
+
Requires-Python: >=3.10
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
License-File: LICENSE
|
16
16
|
Requires-Dist: pandas
|
@@ -552,8 +552,6 @@ This function plots polynomial functions described by a list of expressions and
|
|
552
552
|
|
553
553
|
--------------------------------------------------------------------------------
|
554
554
|
|
555
|
-
media/plot_x_points_of_polynomial_functions_example_5.svg
|
556
|
-
|
557
555
|
### 12. `plot_x_points_of_polynomial_functions`
|
558
556
|
|
559
557
|
This function plots one or more expressions described by a list of dictionaries. For each item in the list, the function evaluates the given Python/NumPy expression at the specified x-values (converted to NumPy arrays if they are Python lists) and plots the resulting points on a single figure.
|
@@ -525,8 +525,6 @@ This function plots polynomial functions described by a list of expressions and
|
|
525
525
|
|
526
526
|
--------------------------------------------------------------------------------
|
527
527
|
|
528
|
-
media/plot_x_points_of_polynomial_functions_example_5.svg
|
529
|
-
|
530
528
|
### 12. `plot_x_points_of_polynomial_functions`
|
531
529
|
|
532
530
|
This function plots one or more expressions described by a list of dictionaries. For each item in the list, the function evaluates the given Python/NumPy expression at the specified x-values (converted to NumPy arrays if they are Python lists) and plots the resulting points on a single figure.
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "rgwfuncs"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.58"
|
8
8
|
authors = [
|
9
9
|
{ name = "Ryan Gerard Wilson", email = "ryangerardwilson@gmail.com" },
|
10
10
|
]
|
11
11
|
description = "A functional programming paradigm for mathematical modelling and data science"
|
12
12
|
readme = "README.md"
|
13
|
-
requires-python = ">=3.
|
13
|
+
requires-python = ">=3.10"
|
14
14
|
classifiers = [
|
15
15
|
"Programming Language :: Python :: 3",
|
16
16
|
"License :: OSI Approved :: MIT License",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[metadata]
|
2
2
|
name = rgwfuncs
|
3
|
-
version = 0.0.
|
3
|
+
version = 0.0.58
|
4
4
|
author = Ryan Gerard Wilson
|
5
5
|
author_email = ryangerardwilson@gmail.com
|
6
6
|
description = A functional programming paradigm for mathematical modelling and data science
|
@@ -16,7 +16,7 @@ classifiers =
|
|
16
16
|
packages = find:
|
17
17
|
package_dir =
|
18
18
|
= src
|
19
|
-
python_requires = >=3.
|
19
|
+
python_requires = >=3.10
|
20
20
|
install_requires =
|
21
21
|
pandas
|
22
22
|
pymssql
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: rgwfuncs
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.58
|
4
4
|
Summary: A functional programming paradigm for mathematical modelling and data science
|
5
5
|
Home-page: https://github.com/ryangerardwilson/rgwfunc
|
6
6
|
Author: Ryan Gerard Wilson
|
@@ -10,7 +10,7 @@ Project-URL: Issues, https://github.com/ryangerardwilson/rgwfuncs
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
12
12
|
Classifier: Operating System :: OS Independent
|
13
|
-
Requires-Python: >=3.
|
13
|
+
Requires-Python: >=3.10
|
14
14
|
Description-Content-Type: text/markdown
|
15
15
|
License-File: LICENSE
|
16
16
|
Requires-Dist: pandas
|
@@ -552,8 +552,6 @@ This function plots polynomial functions described by a list of expressions and
|
|
552
552
|
|
553
553
|
--------------------------------------------------------------------------------
|
554
554
|
|
555
|
-
media/plot_x_points_of_polynomial_functions_example_5.svg
|
556
|
-
|
557
555
|
### 12. `plot_x_points_of_polynomial_functions`
|
558
556
|
|
559
557
|
This function plots one or more expressions described by a list of dictionaries. For each item in the list, the function evaluates the given Python/NumPy expression at the specified x-values (converted to NumPy arrays if they are Python lists) and plots the resulting points on a single figure.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|