proyectoCompi2026 0.1.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.
@@ -0,0 +1,13 @@
1
+ """
2
+ proyectoCompi2026 - Un proyecto de compiladores
3
+
4
+ Este módulo contiene funciones de utilidad para proyectos de compiladores.
5
+ """
6
+
7
+ __version__ = "0.1.0"
8
+ __author__ = "Mi Nombre"
9
+ __license__ = "MIT"
10
+
11
+ from .proyecto import my_function, another_function
12
+
13
+ __all__ = ["my_function", "another_function"]
@@ -0,0 +1,5 @@
1
+ def my_function():
2
+ print("Esta es mi función en el proyecto.")
3
+
4
+ def another_function():
5
+ print("Esta es otra función en el proyecto.")
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: proyectoCompi2026
3
+ Version: 0.1.0
4
+ Summary: Mi proyecto compiladores
5
+ Author-email: Mi Nombre <mi.email@example.com>
6
+ License: MIT
7
+ Keywords: proyecto,compiladores
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.8
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Provides-Extra: dev
21
+ Requires-Dist: pytest>=7.0; extra == "dev"
22
+ Requires-Dist: black>=23.0; extra == "dev"
23
+ Requires-Dist: flake8>=6.0; extra == "dev"
24
+ Requires-Dist: mypy>=1.0; extra == "dev"
25
+ Dynamic: license-file
26
+
27
+ # proyectoCompi2026
28
+
29
+ Un proyecto de compiladores en Python.
30
+
31
+ ## Descripción
32
+
33
+ Este proyecto contiene funciones útiles para trabajar con compiladores.
34
+
35
+ ## Instalación
36
+
37
+ ```bash
38
+ pip install proyectoCompi2026
39
+ ```
40
+
41
+ ## Uso
42
+
43
+ ```python
44
+ from proyectoCompi2026 import my_function, another_function
45
+
46
+ my_function()
47
+ another_function()
48
+ ```
49
+
50
+ ## Requisitos
51
+
52
+ - Python >= 3.8
53
+
54
+ ## Desarrollo
55
+
56
+ Para instalar en modo desarrollo:
57
+
58
+ ```bash
59
+ pip install -e ".[dev]"
60
+ ```
61
+
62
+ ## Licencia
63
+
64
+ MIT - Ver archivo LICENSE para más detalles.
65
+
66
+ ## Autor
67
+
68
+ Mi Nombre
@@ -0,0 +1,7 @@
1
+ proyectoCompi2026/__init__.py,sha256=Lxqdl0jf8XInNlV7RX6xtyao_LaD_REbd976uOG3Lsw,314
2
+ proyectoCompi2026/proyecto.py,sha256=TVDLUZFguQN1AULMFGwOcjBvAixm5OmvYouQoQveVwU,150
3
+ proyectocompi2026-0.1.0.dist-info/licenses/LICENSE,sha256=zdevK4fB-Tl8_VrHiqcLSwS4NXOAfIEdsDUTmDUqKE4,1087
4
+ proyectocompi2026-0.1.0.dist-info/METADATA,sha256=KOTUsmTa0JR5lKR7ndO0AsHsv9mB3OeqwdhWeKx5Kew,1521
5
+ proyectocompi2026-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ proyectocompi2026-0.1.0.dist-info/top_level.txt,sha256=LtLzRNq6Kgm4vQ1T-pZNrKyjfe5lCj3R2phYAyJyFQk,18
7
+ proyectocompi2026-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mi Nombre
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ proyectoCompi2026