Metadata-Version: 2.4
Name: py-pkg-updater
Version: 0.1.0
Summary: A small CLI tool to check and upgrade outdated pip packages.
Author: Ali Esmaeilzadeh
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/update-python-packages
Project-URL: Repository, https://github.com/yourusername/update-python-packages
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.0.0
Dynamic: license-file

# Update Python Packages

A small command-line tool that checks outdated pip packages and lets you upgrade selected packages using a simple terminal interface.

## Installation

```bash
pip install update-python-packages-yourname
Usage
update-packages

---

## 5. Create a virtual environment

On Windows PowerShell:

```bash
python -m venv .venv
.venv\Scripts\Activate.ps1

On macOS/Linux:

python3 -m venv .venv
source .venv/bin/activate
