Metadata-Version: 2.4
Name: annotate_functions
Version: 0.1.0
Summary: Kleine Demo-Funktion zum Grüßen
Author-email: Niklas Geiss <niklas.geiss@zf.com>
License: MIT
Keywords: greeting,demo
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# meinpaket

Ein kleines Paket mit einer `hallo()`-Funktion.

## Installation
`pip install annotate_functions` (nach Veröffentlichung)

## Beispiel
```py
from meinpaket import hallo
print(hallo("Niklas"))
