Metadata-Version: 2.1
Name: poetichelloworld
Version: 0.1.0
Summary: 
Author: softcat477
Author-email: softcat477@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: numpy (>=1.24.3,<2.0.0)
Requires-Dist: pendulum (>=2.1.2,<3.0.0)
Description-Content-Type: text/markdown

how_long
========

Simple Decorator to measure a function execution time.

Example
--------

```python
from poetichelloworld import timer

@timer
def some_function():
    return [x for x in range(10_000_000)]
```
