Metadata-Version: 2.4
Name: rebello
Version: 0.1.0
Summary: Editor-driven Markdown interface for Trello
Project-URL: homepage, https://github.com/alexjuda/rebello
Author-email: alexjuda <alexanderjuda@gmail.com>
License-Expression: Apache-2.0
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: pydantic-settings>=2.10.1
Requires-Dist: requests>=2.32.5
Description-Content-Type: text/markdown

# rebello

`git rebase --interactive` for Trello. Opens a Trello board in `$EDITOR` for editing like a normal
Markdown document.

## Authorization

`rebello` uses the following env vars:

```bash
# Get this from Trello API keys page.
# https://developer.atlassian.com/cloud/trello/guides/power-ups/managing-power-ups/#managing-your-api-key
export TRELLO_API_KEY="..."

# To get this, visit https://trello.com/1/authorize?expiration=13days&name=MyApp&scope=read,write&response_type=token&key=$TRELLO_API_KEY
export TRELLO_API_SECRET="..."

# To get this, visist your board in a web browser, append `.json` to the url and inspect the JSON.
export TRELLO_BOARD_ID="..."
```
