Metadata-Version: 2.4
Name: pomo-tui
Version: 0.1.1
Summary: Terminal-based Pomodoro timer with TUI and sound notifications
Author: newbie1223
License: MIT License
        
        Copyright (c) 2025 son59
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# pomo-tui

A terminal-based Pomodoro timer with a real-time ASCII digital clock.  
Designed for developers who want to stay focused without leaving the terminal.

---

## ✨ Features

- Real-time ASCII digital clock display
- Pomodoro workflow (WORK / BREAK cycles)
- Color-coded phases  
  - 🔴 WORK (Red)  
  - 🔵 BREAK (Blue)
- Keyboard control
  - `p` : pause / resume
- Sound notification on phase change
- Fully terminal-based (no GUI)

---

## 🚀 Installation

```bash
pip install pomo-tui
```

## 🎯 Usage

```bash
pomo
```

```bash
pomo --work 25 --break 5 --cycles 4
```

| Option     | Description              | Default |
| ---------- | ------------------------ | ------- |
| `--work`   | Work duration (minutes)  | 25      |
| `--break`  | Break duration (minutes) | 5       |
| `--cycles` | Number of cycles         | 4       |

| Key        | Action         |
| ---------- | -------------- |
| `p`        | Pause / Resume |
| `Ctrl + C` | Quit           |

## 🛠️ Development Setup

git clone https://github.com/newbie1223/pomodoro-cli.git
cd pomodoro-cli

python3 -m venv .venv
source .venv/bin/activate
pip install -e .
