Metadata-Version: 2.2
Name: example_package_an_academy_test
Version: 0.0.1
Summary: A small example package
Author-email: Mario Rossi <author@example.com>
License: MIT
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Issues, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Nome del Package

## Descrizione
Breve introduzione su cosa fa il package e perché è utile.

## Installazione
```bash
pip install nome-del-package
```

## Esempio di utilizzo
```python
from mypackage import funzione

risultato = funzione()
print(risultato)
```

## Link utili
- [📘 Documentazione ufficiale](#)
- [🐞 Segnala un problema](#)
