Metadata-Version: 2.4
Name: tpg
Version: 1.0.1
Summary: tpg
Author: fieryhenry
License: GPL-3.0-or-later License
Project-URL: Homepage, https://codeberg.org/fieryhenry/tpg
Project-URL: Repository, https://codeberg.org/fieryhenry/tpg
Project-URL: Issues, https://codeberg.org/fieryhenry/tpg/issues
Project-URL: Changelog, https://codeberg.org/fieryhenry/tpg/raw/branch/main/CHANGELOG.md
Keywords: game,topdown,grid,2d,python
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Games/Entertainment
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PySide6
Dynamic: license-file

# THE PIRATE GAME

School project about pirates and stuff.

## Map Key

- Brown squares are friendly tribes
- Red boxes with `R` in them are the sea monster rumours
- Purple squares are traders

## Install from PyPI

1. Install the game

    ```powershell
    pip install tpg
    ```

2. Run the game

    ```powershell
    python -m tpg
    ```

## Installation With Zip / Git

1. Unzip the package
2. Change directory to the extracted folder
3. Create a virtual environment (optional)

    ```powershell
    python -m venv venv
    ```

4. Activate the virtual environment if created

    ```powershell
    .\venv\Scripts\Activate
    ```

5. Install the game

    ```powershell
    pip install .
    ```

6. Run the game

    ```powershell
    python -m tpg
    ```
