Metadata-Version: 2.4
Name: graphs_sayuj0
Version: 0.0.1
Summary: Graph algorithms package: Dijkstra’s shortest path and BFS shortest path
Project-URL: Homepage, https://github.com/sayuj0/graphs_sayuj0
Project-URL: Bug Tracker, https://github.com/sayuj0/graphs_sayuj0/issues
Author-email: Sayuj <sayuj21@gmail.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# graphs_sayuj0

A Python library that implements graph algorithms.  
This package was built as part of a packaging assignment and includes:

- **Dijkstra’s shortest path algorithm** (weighted graphs)
- **BFS shortest path algorithm** (unweighted graphs, bonus)

---

## Installation

### Install from GitHub
Once the repository is public, you can install it directly:

```bash
pip install git+https://github.com/sayuj0/graphs_sayuj0.git
git clone https://github.com/sayuj0/graphs_sayuj0.git
cd graphs_sayuj0
pip install .
```

