Metadata-Version: 2.1
Name: wmk
Version: 0.5
Summary: World Model Kit
Author: Journee
License: Apache-2.0
Project-URL: Homepage, https://github.com/journee-live/wmk
Project-URL: Changelog, https://github.com/journee-live/wmk/releases
Project-URL: Issues, https://github.com/journee-live/wmk/issues
Project-URL: CI, https://github.com/journee-live/wmk/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyglet>=2.0.0
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: numpy; extra == "test"

# wmk

[![PyPI](https://img.shields.io/pypi/v/wmk.svg)](https://pypi.org/project/wmk/)
[![Tests](https://github.com/journee-live/wmk/actions/workflows/test.yml/badge.svg)](https://github.com/journee-live/wmk/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/journee-live/wmk?include_prereleases&label=changelog)](https://github.com/journee-live/wmk/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/journee-live/wmk/blob/main/LICENSE)

World Model Kit

## Installation

Install this library using `pip`:
```bash
pip install wmk
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd wmk
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
