Metadata-Version: 2.1
Name: Affirmations
Version: 0.0.5
Summary: Randomly adds affirming print statements to functions.
Home-page: https://github.com/TimNicholsonShaw/affirmation
Author: Tim Nicholson-Shaw
Author-email: timnicholsonshaw@gmail.com
License: UNKNOWN
Project-URL: GitHub, https://github.com/TimNicholsonShaw/affirmation
Keywords: Self Care
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Affirmations

## Give yourself a little bump of encouragement

## Requirements
- A positive attitude

## Installation

```bash
pip install Affirmations
```

## Usage

Decorate any function to get a random affirmation printed to stdout every time that function is run

```
from Affirmations.Affirm import affirm

@affirm
def hello_world:
    print("hello")
```

