Metadata-Version: 2.4
Name: aialgorithms
Version: 0.1.0
Summary: A collection of AI algorithms including BFS, DFS, A*, CSP, and more
Home-page: https://github.com/yourusername/aialgorithms
Author: Your Name
Author-email: your.email@example.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

# AI Algorithms Package

A comprehensive collection of AI algorithms implemented in Python, including:

- Breadth-First Search (BFS)
- Depth-First Search (DFS)
- A* Pathfinding Algorithm
- Constraint Satisfaction Problems (CSP) with Backtracking
- CSP with Branch and Bound
- Greedy Algorithm
- Simple Chatbot Implementation

## Installation

```bash
pip install aialgorithms
```

## Usage

```python
from aialgorithms.search import bfs, dfs, astar
from aialgorithms.csp import backtrack, branch
from aialgorithms.greedy import solve
from aialgorithms.chatbot import Chatbot

# Example usage will be provided for each algorithm
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
