Metadata-Version: 2.4
Name: HadeelAI
Version: 0.1.0
Summary: A simple search problem package
Author: Hadel Dhiany
Author-email: Hadeel Dhiany <hadeldhaiany2005@gmail.com>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# Hadeel

A simple Python package for defining search problems.

## Installation

```bash
pip install Hadeel
```

## Usage

```python
from Hadeel import SearchProblem

problem = SearchProblem("start", "goal")
print(problem.get_initial_state())  # start
print(problem.is_goal("goal"))      # True
```
