matekit 1.0.3__tar.gz → 1.0.4__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.
- {matekit-1.0.3 → matekit-1.0.4}/PKG-INFO +2 -1
- {matekit-1.0.3 → matekit-1.0.4}/matekit/__init__.py +2 -1
- matekit-1.0.4/matekit/solver.py +10 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit.egg-info/PKG-INFO +2 -1
- {matekit-1.0.3 → matekit-1.0.4}/matekit.egg-info/SOURCES.txt +3 -1
- matekit-1.0.4/matekit.egg-info/requires.txt +1 -0
- {matekit-1.0.3 → matekit-1.0.4}/pyproject.toml +5 -1
- {matekit-1.0.3 → matekit-1.0.4}/matekit/algebra.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/aritmetica.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/calculadora.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/calculo.py +0 -0
- /matekit-1.0.3/matekit/CLI.PY → /matekit-1.0.4/matekit/cli.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/conversiones.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/estadistica.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/fisica.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/geometria.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/graficas.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/lineal.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit/trigonometria.py +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit.egg-info/dependency_links.txt +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit.egg-info/entry_points.txt +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/matekit.egg-info/top_level.txt +0 -0
- {matekit-1.0.3 → matekit-1.0.4}/setup.cfg +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matekit
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Matekit is a modern Python mathematics library designed to make calculations, graphing, algebra, geometry, statistics, and mathematical utilities simple and powerful. It provides an easy-to-use API for students, developers, and anyone working with mathematics in Python.
|
|
5
5
|
Author: Nico
|
|
6
|
+
Requires-Dist: sympy
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matekit
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Matekit is a modern Python mathematics library designed to make calculations, graphing, algebra, geometry, statistics, and mathematical utilities simple and powerful. It provides an easy-to-use API for students, developers, and anyone working with mathematics in Python.
|
|
5
5
|
Author: Nico
|
|
6
|
+
Requires-Dist: sympy
|
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
pyproject.toml
|
|
2
|
-
matekit/CLI.PY
|
|
3
2
|
matekit/__init__.py
|
|
4
3
|
matekit/algebra.py
|
|
5
4
|
matekit/aritmetica.py
|
|
6
5
|
matekit/calculadora.py
|
|
7
6
|
matekit/calculo.py
|
|
7
|
+
matekit/cli.py
|
|
8
8
|
matekit/conversiones.py
|
|
9
9
|
matekit/estadistica.py
|
|
10
10
|
matekit/fisica.py
|
|
11
11
|
matekit/geometria.py
|
|
12
12
|
matekit/graficas.py
|
|
13
13
|
matekit/lineal.py
|
|
14
|
+
matekit/solver.py
|
|
14
15
|
matekit/trigonometria.py
|
|
15
16
|
matekit.egg-info/PKG-INFO
|
|
16
17
|
matekit.egg-info/SOURCES.txt
|
|
17
18
|
matekit.egg-info/dependency_links.txt
|
|
18
19
|
matekit.egg-info/entry_points.txt
|
|
20
|
+
matekit.egg-info/requires.txt
|
|
19
21
|
matekit.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sympy
|
|
@@ -4,11 +4,15 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "matekit"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.4"
|
|
8
8
|
description = "Matekit is a modern Python mathematics library designed to make calculations, graphing, algebra, geometry, statistics, and mathematical utilities simple and powerful. It provides an easy-to-use API for students, developers, and anyone working with mathematics in Python."
|
|
9
9
|
authors = [
|
|
10
10
|
{name = "Nico"}
|
|
11
11
|
]
|
|
12
12
|
|
|
13
|
+
dependencies = [
|
|
14
|
+
"sympy"
|
|
15
|
+
]
|
|
16
|
+
|
|
13
17
|
[project.scripts]
|
|
14
18
|
matekit = "matekit.cli:main"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|