Metadata-Version: 2.4
Name: nqueens-solver
Version: 0.2.0
Summary: A Python library to solve the N-Queens problem efficiently.
Home-page: https://github.com/durkesh-datasci/n-queens-solver
Author: Durkesh
Author-email: durkeshpanuja@gmail.com
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# 🏆 N-Queens Solver

A Python library to solve the **N-Queens problem** efficiently.

## ✨ Features
- Solves the N-Queens problem for any board size `N`.
- Returns all valid solutions.
- Provides a clean matrix representation of the board.
- Easy to install and use.

---

## 🚀 Installation

You can install the package using **pip** (after it's published to PyPI):
```sh
pip install nqueens-solver
