Metadata-Version: 2.4
Name: simple-number-converter
Version: 1.1.0
Summary: A powerful CLI tool to convert numbers between different systems
Author: Jacky-jacky21
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Number-System-Converter
![Status](https://img.shields.io/badge/Status-Work%20in%20Progress-orange)

A lightweight CLI tool to convert numbers between different numeral systems (Decimal, Binary, etc.). It works both as an interactive menu and via direct terminal arguments.

---

## 🚀 Features

- **Dual Mode:** Use the interactive menu or pass arguments to convert instantly.
- **Built-in Help:** Clean interface documentation using standard `--help`.
- **Modular Code:** Separated logic, menu handling, and entry point for easy scaling.
---

- Decimal -> Binary
- Decimal -> Hexadecimal
- Binary -> Decimal
- Binary -> Hexadecimal
- Hexadecimal -> Decimal
- Hexadecimal -> Binary 

---

## 🛠️ Installation & Setup

### Prerequisites
Make sure you have **Python 3.x** installed.

### Running the App
Clone the repository, open your terminal in the project folder, and run:

```bash
# Option 1: Start the interactive menu
python main.py

# Option 2: Convert instantly using arguments
python main.py --dectobin 42
python main.py -db 42 
