Metadata-Version: 2.4
Name: runwhere
Version: 0.2.1
Summary: RunWhere.ai CLI — GPU job management tool
License: MIT
Keywords: gpu,ai,cloud,cli
Author: RunWhere.ai
Author-email: dev@runwhere.ai
Requires-Python: >=3.11
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: dev
Requires-Dist: click (>=8.0)
Requires-Dist: httpx (>=0.27)
Requires-Dist: pathspec (>=0.12)
Requires-Dist: pydantic (>=2.0)
Requires-Dist: pytest (>=8.0) ; extra == "dev"
Requires-Dist: pytest-mock ; extra == "dev"
Requires-Dist: pyyaml (>=6.0)
Requires-Dist: rich (>=13.0)
Requires-Dist: tomli-w (>=1.0)
Requires-Dist: websockets (>=12.0)
Project-URL: Homepage, https://runwhere.ai
Project-URL: Repository, https://github.com/runwhere/runwhere
Description-Content-Type: text/markdown

# runwhere — RunWhere.ai CLI

GPU 任务管理工具。通过 HTTP API 管理云端 GPU 资源和 AI 计算任务。

## 安装

```bash
pip install -e ".[dev]"
```

## 使用

```bash
runwhere login --endpoint https://api.runwhere.ai
runwhere sync -f train.yaml
runwhere submit -f train.yaml
runwhere logs <job-name> -f
runwhere price summary
runwhere jobs get
runwhere usage
```

## 开发

```bash
pytest tests/ -v
```

## 构建

```bash
bash scripts/build.sh
```

