Metadata-Version: 2.4
Name: meetmeet
Version: 0.1.3
Summary: Lightweight terminal app for capturing meeting audio and producing live transcripts.
Author: Cole Charbonneau
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27
Requires-Dist: mlx-whisper>=0.4
Requires-Dist: numpy>=1.26
Requires-Dist: questionary>=2.0
Requires-Dist: rich>=13.7
Requires-Dist: scipy>=1.11
Requires-Dist: sounddevice>=0.4.6
Provides-Extra: faster
Requires-Dist: faster-whisper>=1.0; extra == 'faster'
Description-Content-Type: text/markdown

# meetmeet

Lightweight macOS terminal app for capturing meeting audio (system + microphone) and producing a live transcript, with optional post-meeting summary via Ollama.

## Setup

```bash
brew install blackhole-2ch ffmpeg
# Audio MIDI Setup -> + -> Multi-Output Device
#   -> check Built-in Output + BlackHole 2ch
# System Settings -> Sound -> Output -> select Multi-Output Device

cd /path/to/meetmeet
python -m venv .venv && source .venv/bin/activate
pip install -e .
```

Make sure Ollama is running and the configured summary model is pulled:

```bash
ollama pull qwen3.5:4b
```

## Usage

```bash
meetmeet
```

Opens a menu:
- **Start a new meeting** — prompts for a title, then captures + transcribes live until you press `q` (or Ctrl-C).
- **Browse past meetings** — lists recent meetings; offers to generate a summary for any meeting that doesn't yet have one.

Transcripts and summaries land under `~/.meetmeet/<slug>/`.

## Config

`~/.meetmeet/config.toml` is created with defaults on first run. STT and summary backends are pluggable via the `[stt]` and `[summary]` sections.
