Metadata-Version: 2.4
Name: supa.cc
Version: 0.4.0
Summary: Local Supabase account switcher for macOS, Linux, and Windows
Project-URL: Homepage, https://github.com/dgabreuu/supa.cc
Project-URL: Repository, https://github.com/dgabreuu/supa.cc.git
Project-URL: Issues, https://github.com/dgabreuu/supa.cc/issues
Project-URL: Documentation, https://github.com/dgabreuu/supa.cc/blob/main/docs/usage.md
Project-URL: Changelog, https://github.com/dgabreuu/supa.cc/blob/main/CHANGELOG.md
License: MIT License
        
        Copyright (c) 2026 Supa.cc contributors
        
        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.
License-File: LICENSE
Keywords: account-management,cli,credential-manager,developer-tools,keychain,linux,macos,secret-service,supabase,windows
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.11
Requires-Dist: click>=8.0.0
Requires-Dist: keyring>=24.0.0
Requires-Dist: questionary>=2.0.0
Provides-Extra: dev
Requires-Dist: build>=1.2.0; extra == 'dev'
Requires-Dist: pip-audit<3,>=2.7; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: pyyaml>=6.0; extra == 'dev'
Requires-Dist: setuptools>=78.1.1; extra == 'dev'
Description-Content-Type: text/markdown

```text
 ____
/ ___| _   _ _ __   __ _   ___ ___
\___ \| | | | '_ \ / _` | / __/ __|
 ___) | |_| | |_) | (_| || (_| (__
|____/ \__,_| .__/ \__,_(_)___\___|
            |_|
```

# Supa.cc

Supa.cc is a local CLI for switching between multiple Supabase accounts without spreading Personal Access Tokens (PATs) across files or commands. The primary experience is a TUI; after activation, `supabase` itself uses the selected account.

| Platform | Support | Native credential |
| --- | --- | --- |
| macOS | Supported | Keychain |
| Debian/Ubuntu, Arch Linux, and Fedora | Supported; derivatives are best-effort | Secret Service |
| Windows | Supported | Windows Credential Manager |

Requires Python 3.11+ and the [official Supabase CLI](https://supabase.com/docs/guides/local-development/cli/getting-started) >= 2.109.1 on `PATH`.

![Supa.cc showing the compact home and available terminal actions](https://raw.githubusercontent.com/dgabreuu/supa.cc/main/assets/terminal.svg)

## Installation

Prerequisites, upgrades, and uninstallation are covered in the [installation guide](https://github.com/dgabreuu/supa.cc/blob/main/docs/installation.md).

### macOS

```bash
brew tap dgabreuu/supa-cc https://github.com/dgabreuu/supa.cc.git
brew install supa-cc
```

### Linux

```bash
pipx install supa.cc
```

### Windows

```powershell
pipx install supa.cc
```

## Security

PATs remain only in each platform's native credential store; no local file contains a PAT. The token reaches the Supabase CLI through the process environment, never through a command-line argument. See the [security model](https://github.com/dgabreuu/supa.cc/blob/main/docs/security.md) for guarantees and limits.

## License

MIT. See the [full license](https://github.com/dgabreuu/supa.cc/blob/main/LICENSE).
