Metadata-Version: 2.4
Name: smartfleet-optimizer
Version: 0.1.0
Summary: Analytics library for fleet telemetry: risk scoring, alerts, maintenance prediction
Author: Satvik T M
Author-email: satvikw007@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# fleet-optimization-engine-satvik25159712

Analytics library for fleet telemetry data. Provides risk scoring,
alert detection, fuel efficiency analysis and maintenance prediction.

## Install
pip install fleet-optimization-engine-satvik25159712

## Quick start
from fleet_optimization_pkg import TelemetryAnalyzer
analyzer = TelemetryAnalyzer()
profile = analyzer.build_risk_profile({
    "vehicle_id": "VAN-001", "speed_kmh": 50,
    "fuel_percent": 75, "engine_temp_c": 85
})
print(profile.risk_label)
