Metadata-Version: 2.4
Name: ssh-tunnel-gateway
Version: 0.1.1
Summary: SSH tunnel server + agent with reverse port forwarding
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: fastapi>=0.110
Requires-Dist: uvicorn[standard]>=0.29
Requires-Dist: requests>=2.31
Requires-Dist: cryptography>=41

# ssh-tunnel-gateway

Single Python package that ships both the server and agent CLIs.

## Install (editable)

```bash
python -m venv .venv
. .venv/bin/activate
pip install -e .
```

## Server

```bash
API_KEY="change-me" ssh-tunnel-server
```

## Agent

```bash
ssh-tunnel-agent --api-key change-me --endpoint http://server:12000
```

## Build & Upload

```bash
make build
make upload
```
