Metadata-Version: 2.4
Name: npong
Version: 1
Summary: Pong in Python, now with curses!
Author-email: Jacobus Burger <therealjacoburger@gmail.com>
Maintainer-email: Jacobus Burger <therealjacoburger@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/LordUbuntu/pong-ncurses
Keywords: pong,game,ncurses,curses
Classifier: Development Status :: 6 - Mature
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console :: Curses
Classifier: Topic :: Games/Entertainment :: Arcade
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Other Audience
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.13.3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: windows-curses; platform_system == "Windows"
Dynamic: license-file

# Pong NCurses

The classic game pong with ncurses graphics written in Python 3

# Installation

Make sure you have Python 3.10 or greater installed on you system.

## Linux

Every dependency is part of the Python 3.10+ standard library, so no installations are required. Just run the script like so:

## Windows

Windows hates playing nice, so the installation is a bit more involved.

Install windows-curses
```
pip install windows-curses
```

# Running the game

To run pong, simply run the following from your terminal in the directory that pong.py is located in:
```
python3 pong.py
```

# How to play
- w, s: up, down for player 1
- i, k: up, down for player 2
- q: quit
