Metadata-Version: 2.4
Name: complexity-estimator-dimple
Version: 0.1.2
Summary: Estimate time and space complexity of Python functions using static analysis and runtime profiling.
Author: KilariDimple
License-Expression: MIT
Project-URL: Homepage, https://github.com/KilariDimple
Project-URL: Repository, https://github.com/KilariDimple/complexity-estimator-dimple
Keywords: complexity,time complexity,space complexity,Big-O,profiling,static analysis
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: psutil

# complexity-estimator

Estimate (not prove) Big-O time & space complexity of Python functions.

## Features
- Static hints (loops, recursion)
- Runtime profiling (time + peak memory via `tracemalloc`)
- Model fit to {O(1), O(log n), O(n), O(n log n), O(n^2), O(n^3)}
- Decorator `@analyze` and CLI `complexity-analyze`

## Quick Start
```bash
pip install complexity-estimator
