Metadata-Version: 2.1
Name: whimsylib
Version: 0.0.1
Summary: A generic game engine for text-based games, inspired by adventurelib.
Home-page: https://github.com/Cronenbrogues/whimsylib
Author: The Arch Cronenbrogues
Author-email: cronenbrogues@googlegroups.com
License: UNKNOWN
Platform: UNKNOWN
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# whimsylib

A game engine for text-based games, inspired by [adventurelib](https://github.com/lordmauve/adventurelib).

This is currently the game engine behind [cronenbroguelike](https://github.com/Cronenbrogues/cronenbroguelike).

## Develop

Set up a virtualenv and install the dev requirements.

```
python -m venv venv
source venv/bin/activate
pip install -r requirements/requirements-dev.txt
```

## Release

Update the version number in `setup.py`, create the release files, and upload them to PyPI.

```
pip install -r requirements/requirements-release.txt
python setup.py sdist bdist_wheel
twine upload dist/*
```


