Metadata-Version: 2.1
Name: clockwise
Version: 1.0.0
Summary: Simple but expressive timing package in Python
Author: Simon Schaefer
Author-email: Simon Schaefer <simon.k.schaefer@gmail.com>
Project-URL: Homepage, https://github.com/simon-schaefer/clockwise
Project-URL: Bug Tracker, https://github.com/simon-schaefer/clockwise/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: loguru

# clockwise 🕰️
Simple but expressive timing package in Python

## Installation
```
pip install clockwise
```

## Minimal Example
```
import clockwise

@clockwise.timing("foo")
def foo(a: int): 
   return a + 4

def main():
    for i in range(10):
        foo(i)
    clockwise.print_timings() 

if __name__ == '__main__':
    main()
```

