Metadata-Version: 2.1
Name: holopazaak
Version: 2.0.0
Summary: A comprehensive PyQt6 Pazaak card game implementation for Knights of the Old Republic with multiplayer support
Author-email: th3w1zard1 <halomastar@gmail.com>
License: LGPL-3.0-or-later
Project-URL: Homepage, https://github.com/th3w1zard1/PyKotor
Project-URL: Documentation, https://github.com/th3w1zard1/PyKotor/wiki
Project-URL: Repository, https://github.com/th3w1zard1/PyKotor.git
Project-URL: Issues, https://github.com/th3w1zard1/PyKotor/issues
Project-URL: Changelog, https://github.com/th3w1zard1/PyKotor/releases
Keywords: kotor,kotor1,kotor2,tsl,star-wars,knights-of-the-old-republic,pazaak,card-game,minigame,pyqt6,qt,qtpy,game,casino,cards,multiplayer,pykotor,bioware,lucasarts,websocket
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Games/Entertainment :: Board Games
Classifier: Environment :: X11 Applications :: Qt
Classifier: Environment :: Win32 (MS Windows)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: qtpy>=2.4.3
Requires-Dist: PyQt6>=6.6.1; platform_python_implementation == "CPython"
Requires-Dist: PySide6>=6.6.3.1; platform_python_implementation == "PyPy"
Requires-Dist: websockets>=12.0
Provides-Extra: qt5
Requires-Dist: PyQt5>=5.15; extra == "qt5"
Provides-Extra: pyside6
Requires-Dist: PySide6>=6.6.3.1; extra == "pyside6"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-qt>=4.2.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"

# HoloPazaak

A PyQt5 implementation of the Pazaak card game from Knights of the Old Republic.

## Requirements

- Python 3.8 through 3.12

## Local Run

### Windows

From command line:

```
pip install -r requirements.txt
set PYTHONPATH=%cd%\src
python src/holopazaak/app.py
```

### Unix

From terminal:

```
pip install -r requirements.txt
PYTHONPATH=$PWD/src python src/holopazaak/app.py
```

## Local Development

- Clone [PyKotor](https://github.com/th3w1zard1/PyKotor) and run the `install_python_venv.ps1` script in your powershell terminal. That's it!

## Building

To build the executable:

```powershell
./Tools/HoloPazaak/compile/build.ps1
```

The output will be in `dist/HoloPazaak/`.

