Metadata-Version: 2.4
Name: bunjee
Version: 0.1.1
Summary: Animated Bunjee terminal CLI
Author: Bunjee
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/bunjee/
Keywords: cli,terminal,animation,ascii
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Terminals
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Bunjee

A Python CLI with a watery blue intro, lava-style spread, and a big red/green `BUNGEE` reveal.

## Run locally

```bash
python -m bunjee
```

## Install as CLI

```bash
pip3 install -e .
bunjee
```

## Build and publish to PyPI

```bash
python3 -m pip install --upgrade build twine
python3 -m build
```

Set your token in the shell (replace with your real token):

```bash
export TWINE_USERNAME=__token__
export TWINE_PASSWORD='pypi-xxxxxxxxxxxxxxxxxxxxxxxx'
python3 -m twine upload dist/*
```

Then anyone can install it with:

```bash
pip3 install bunjee
```
