Metadata-Version: 2.4
Name: tictactoe-sudeep
Version: 0.1.0
Summary: A simple terminal-based Tic-Tac-Toe game.
Author-email: Sudeep <sudeepbunny28@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# tictactoe-sudeep

A simple, clean terminal-based Tic-Tac-Toe game for two players — playable right from your command line.

## Installation

```bash
pip install tictactoe-sudeep
```

## Usage

Once installed, just run:

```bash
tictactoe
```

The game will launch in your terminal. Players take turns entering a number (0–8) to place their mark:

```
   0 | 1 | 2
  -----------
   3 | 4 | 5
  -----------
   6 | 7 | 8
```

## Features

- Two-player mode (X vs O)
- Clean terminal UI with board clearing between turns
- Win detection for rows, columns, and diagonals
- Tie detection

## Requirements

- Python 3.7+

## License

MIT
