Metadata-Version: 2.4
Name: cargame
Version: 2.0.0
Summary: Terminal car racing game (native C++ binary wrapped with Python CLI).
Author: Aswin
License: MIT
Project-URL: Homepage, https://github.com/ASWINa1636/Car-game-publish-setup
Project-URL: Source, https://github.com/ASWINa1636/Car-game-publish-setup
Project-URL: Issues, https://github.com/ASWINa1636/Car-game-publish-setup
Keywords: game,terminal,racing,cli
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Games/Entertainment
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# cargame — Terminal Car Game 🚗💨

A lightweight cross-platform terminal racing game written in C++ and packaged as a Python CLI wrapper.
Players can install via pip and run a native binary using the `car-game` command.

---

## Quick start

# on Debian/Ubuntu
sudo apt update && sudo apt install -y pipx
pipx ensurepath
pipx install cargame

# then run
car-game

if you get any issue try this commands

# 1) Temporarily put ~/.local/bin at front of PATH for this session
export PATH="$HOME/.local/bin:$PATH"

# 2) Verify the binary exists and is executable
ls -l "$HOME/.local/bin/car-game" || true

# 3) Verify shell can now find it and run it (or show its path)
command -v car-game || which car-game || true

# 4) Try to run it
car-game || true

# or run 
car-game

## For windows
pip install cargame

# run
car-game
