Metadata-Version: 2.4
Name: water-buddy
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.

## Run From Source

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

By default, Water Buddy reminds you every 45 minutes. Snooze waits 5 minutes.
You can change either timer:

For quick local testing:

```powershell
python main.py --reminder-minutes 1 --snooze-minutes 1
```

## 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/*
```
