Metadata-Version: 2.4
Name: maze-game-engine
Version: 0.1
Summary: A basic engine for basic maze games.
Author-email: "Nel. S." <75831544+Nel-S@users.noreply.github.com>
License-Expression: CC-BY-NC-SA-4.0
Project-URL: Homepage, https://github.com/Nel-S/Maze
Project-URL: Issues, https://github.com/Nel-S/Maze/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Dynamic: license-file

# Maze Game Engine
This is a basic engine for maze games. Currently, it supports mazes between one and eight dimensions; a user; and exit points.

This library has also served as my first GitHub repository (in 2021) and my first PyPi package (in 2025).

## Installation and Usage
1. Install [Python 3.10 or above](https://www.python.org/downloads) alongside its pip package manager.
2. Open a terminal of your choice and install the library:
```bash
pip install maze-game-engine -U
```
3. The library can now be imported to your projects and invoked as desired:
```py
import maze_game_engine as mge
...
```
