Metadata-Version: 2.4
Name: pomiterm
Version: 0.1.0
Summary: A small minimal Pomodoro timer running in your terminal.
Requires-Python: >=3.10
Requires-Dist: questionary>=2.0
Requires-Dist: rich>=13.0
Description-Content-Type: text/markdown

# PomiTerm 🍅

A terminal-based Pomodoro timer built with Python and Rich.

## Features

- Pomodoro timer with work sessions, short breaks, and long breaks
- Live countdown display in the terminal
- Distinct sounds for each timer type (macOS)
- Configurable settings (durations, cycles)

## Requirements

- Python 3.x
- macOS (sound playback uses `afplay`)

```sh
pip install rich questionary
```

## Usage

```sh
python main.py
```

Or as a global terminal command:

```sh
chmod +x main.py
ln -s $(pwd)/main.py /usr/local/bin/pomiterm
pomiterm
```

## Default Settings

| Setting     | Value  |
|-------------|--------|
| Work        | 25 min |
| Short break | 5 min  |
| Long break  | 15 min |
| Cycles      | 4      |

Settings can be changed from the main menu under **Settings**.
