Metadata-Version: 2.4
Name: peehu
Version: 0.1.0
Summary: A tiny animated desktop pet that reminds you to drink water.
Author: Water Buddy
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: customtkinter
Requires-Dist: opencv-python
Requires-Dist: pillow
Dynamic: license-file

# Water Buddy

Water Buddy is a tiny animated desktop pet that reminds you to drink water.

Install from PyPI:

```powershell
python -m pip install peehu
water-buddy
```

## Run From Source

```powershell
python -m pip install -r requirements.txt
python main.py
```

By default, Water Buddy appears immediately on launch, then follows a fixed
routine from 8:00 AM to 7:00 AM the next day every 2 hours. Snooze waits 5
minutes.

For quick local testing:

```powershell
python main.py --snooze-minutes 1 --routine-every-hours 1
```

You can change the routine:

```powershell
water-buddy --routine-start-hour 8 --routine-end-hour 7 --routine-every-hours 2
```

## Install Locally

```powershell
python -m pip install -e .
water-buddy
```

## Build For PyPI

```powershell
python -m pip install build twine
python -m build
python -m twine check dist/*
python -m twine upload dist/*
```
