Metadata-Version: 2.1
Name: ai-traffic-signal
Version: 0.1.0
Summary: Algorithms and utilities for AI-driven traffic signal and path planning (RRT*, Dijkstra, round-robin).
License: MIT
Keywords: traffic,rrt,dijkstra,networkx,round-robin
Author: Subhadip Das
Author-email: subhadipdas2025@outlook.com
Requires-Python: >=3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: matplotlib
Requires-Dist: networkx
Requires-Dist: numpy
Requires-Dist: scikit-learn
Requires-Dist: scipy
Description-Content-Type: text/markdown

# ai-traffic-signal

A small collection of algorithms used during thesis experiments: RRT*, Dijkstra's grid shortest path, and a weighted round-robin helper.

Install (development):

```bash
python -m pip install -e .[dev]
```

Basic usage:

```python
from ai_traffic_signal import load_module
rrt = load_module('rrt_dijkstra')
```

See the modules for function docs.

