Metadata-Version: 2.4
Name: thehouse
Version: 2.7.1
Summary: A text-based horror game
License: MIT
License-File: LICENSE
Author: Davide Di Criscito
Author-email: dcdavidev@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Topic :: Games/Entertainment
Requires-Dist: pyfiglet (>=1.0.4,<2.0.0)
Requires-Dist: questionary (>=2.1.1,<3.0.0)
Requires-Dist: rich (>=14.3.3,<15.0.0)
Description-Content-Type: text/markdown

# the house

A text-based game written in python

## Install or Download

- **Pip**: You can install the game with pip by typing `pip install thehouse`
- **Docker**: You can run the game directly using Docker:
  ```bash
  docker run -it dcdavidev/thehouse
  ```
- **Source**: You can download this repository and run it locally.

## Play

### Using Pip
If you have installed **thehouse** via pip, you can start the game by typing:
```bash
thehouse
```

### Using Docker
When running with Docker, ensure you use the `-it` flags to enable the interactive terminal required for the game:
```bash
docker run -it dcdavidev/thehouse
```

### From Source
If you downloaded the repository, ensure you have [Poetry](https://python-poetry.org/) installed, then run from the root of the repo:
```bash
poetry run python -m thehouse
```

