Metadata-Version: 2.4
Name: worldjen
Version: 0.6.0
Summary: WorldJen Python SDK for running evaluation pipelines on video and world models
Author-email: Moonmath AI <support@moonmath.ai>
Project-URL: Homepage, https://www.worldjen.com
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: cryptography>=42.0.0
Requires-Dist: numpy>=1.24
Requires-Dist: requests>=2.28
Requires-Dist: Pillow>=9.0
Requires-Dist: imageio>=2.28
Requires-Dist: imageio-ffmpeg>=0.4.8
Provides-Extra: runner
Requires-Dist: celery>=5.3; extra == "runner"
Requires-Dist: cryptography>=42.0.0; extra == "runner"
Requires-Dist: kombu>=5.3; extra == "runner"
Requires-Dist: torch>=2.0; extra == "runner"
Requires-Dist: torchvision; extra == "runner"
Requires-Dist: torchaudio; extra == "runner"
Requires-Dist: diffusers>=0.30.0; extra == "runner"
Requires-Dist: transformers<6.0.0,>=4.40.0; extra == "runner"
Requires-Dist: accelerate>=0.25.0; extra == "runner"
Requires-Dist: huggingface-hub>=0.23.0; extra == "runner"
Requires-Dist: opencv-python>=4.10.0; extra == "runner"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: numpy>=1.24; extra == "dev"
Provides-Extra: integration
Requires-Dist: pytest; extra == "integration"
Requires-Dist: diffusers>=0.32; extra == "integration"
Requires-Dist: torch; extra == "integration"
Requires-Dist: accelerate; extra == "integration"
Requires-Dist: transformers<6.0.0,>=4.40.0; extra == "integration"
Requires-Dist: sentencepiece; extra == "integration"
Requires-Dist: protobuf; extra == "integration"

# WorldJen Python SDK

WorldJen provides SDK and CLI tools for Score, Rank, and Bench evaluation workflows.

This package README is intentionally short so the SDK reference is maintained in one place:

- SDK guide: https://docs.worldjen.com/sdk
- CLI guide: https://docs.worldjen.com/cli
- SDK + CLI reference examples: https://docs.worldjen.com/sdk-cli
- Concepts: https://docs.worldjen.com/concepts

Install:

```bash
pip install worldjen
```

Install the runner extras when operating a GPU runner host:

```bash
pip install "worldjen[runner]"
```
