Metadata-Version: 2.4
Name: moore-shortest-path
Version: 1.0.3
Summary: Implementation of Moore's shortest path algorithm in Python
Home-page: https://github.com/yourusername/moore_algorithm
Author: Your Name
Author-email: your.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Intended Audience :: Developers
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# moore_algorithm

A Python implementation of Moore's shortest path algorithm.

## Installation
```bash
pip install moore_algorithm
Usage
from moore import moore_shortest_path

graph = {
    'A': ['B', 'C'],
    'B': ['A', 'D', 'E'],
    'C': ['A', 'F'],
    'D': ['B'],
    'E': ['B', 'F'],
    'F': ['C', 'E']
}

print(moore_shortest_path(graph, 'A'))
License

3. Save the file.
4. Bump the version in `setup.py` (e.g. `version="1.0.6"`).
5. Rebuild and upload again:
   ```powershell
   Remove-Item -Recurse -Force dist
   python setup.py sdist bdist_wheel
   twine upload dist/*
