Metadata-Version: 2.1
Name: rupi
Version: 0.1.26
Summary: A Python library for my codes.
Home-page: https://github.com/TanujairamV/pali
Author: Tanujairam
Author-email: tanujairam.v@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE


---

# Rupi Library 🌀  
[![PyPI Version](https://img.shields.io/pypi/v/rupi)](https://pypi.org/project/rupi/)  
[![License](https://img.shields.io/github/license/TanujairamV/rupi)](LICENSE)  
[![Python Versions](https://img.shields.io/pypi/pyversions/rupi)](https://pypi.org/project/rupi/)  

**Rupi** is a lightweight Python library that includes fun games and utilities. Perfect for anyone looking to have fun with Python while exploring GUI development and algorithm-based games.  

---

## 🌟 Features  
- **FLAMES Game:** Find your relationship compatibility with a fun twist!  
- **XO (Tic-Tac-Toe):** A GUI-based two-player Tic-Tac-Toe game built with Tkinter.  
- **Chess (BETA):** A GUI-based Chess game for casual players.  

---

## 🔧 Installation  

Install the library directly from [PyPI](https://pypi.org/project/rupi/):  
```bash
pip install rupi
```

---

## 📜 Usage  

Here are some examples of how you can use the **Rupi** library:  

### 🔥 FLAMES Game  
```python
from rupi import flames_game

name1 = "Alice"
name2 = "Bob"
result = flames_game(name1, name2)
print(f"The relationship between {name1} and {name2} is: {result}")
```

### ❌⭕ Tic-Tac-Toe (XO)  
```python
from rupi import xo

# Start the XO game
xo()
```

### ♟️ Chess (Beta)  
```python
from rupi import play_chess

# Launch the Chess game
play_chess()
```

---

## 📚 About  

```plaintext
Rupi Library:
This library implements:
1. FLAMES game: A fun relationship game based on two names.
2. XO (Tic-Tac-Toe) game: A GUI-based game for two players built with Tkinter.
3. Chess Game (Beta): A simple GUI-based chess experience.

Author: Tanujairam  
Email: tanujairam.v@gmail.com  
PyPI: https://pypi.org/project/rupi/
```

---

## 🛠️ Development  

Clone the repository to contribute or modify the library:  
```bash
git clone https://github.com/TanujairamV/rupi.git
cd rupi
```

Run the library locally by executing the individual scripts.  

---

## 📝 License  

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.  

---

## 🌟 Contributing  

Contributions, issues, and feature requests are welcome!  
Feel free to fork the repo and make a pull request.  

---
