Metadata-Version: 2.4
Name: alfredynhoacg-dev
Version: 0.1.0
Summary: Mi primera librería en Python
Home-page: https://github.com/tuusuario/alfred
Author: Alfredo Callizaya Gutierrez
Author-email: alfredynho.cg@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Mi Librería

Esta es mi primera librería en Python. Incluye una función para saludar.

## Instalación

```bash
pip install alfred



from mi_libreria import saludar

print(saludar("Mundo"))


---

### **4. Crear el archivo `pyproject.toml`**
Este archivo define cómo construir tu proyecto. Crea un archivo `pyproject.toml` con el siguiente contenido:

```toml
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
