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.
@@ -1,5 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matekit
3
- Version: 1.0.3
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
@@ -8,4 +8,5 @@ from .estadistica import *
8
8
  from .fisica import *
9
9
  from .conversiones import *
10
10
  from .graficas import *
11
- from .calculadora import *
11
+ from .calculadora import *
12
+ from .solver import *
@@ -0,0 +1,10 @@
1
+ from sympy import symbols, solve, sympify
2
+
3
+ def resolver(ecuacion):
4
+ x = symbols('x')
5
+
6
+ expr = sympify(ecuacion)
7
+
8
+ resultado = solve(expr, x)
9
+
10
+ return resultado
@@ -1,5 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matekit
3
- Version: 1.0.3
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.3"
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