Metadata-Version: 2.4
Name: renobrief
Version: 0.1.0
Summary: Estimate home renovation budget ranges by room, style, and scope. Companion CLI for RenoBrief AI (https://renobrief.com).
Author: wujieli
License: MIT
Project-URL: Homepage, https://renobrief.com
Project-URL: Documentation, https://renobrief.com
Project-URL: Repository, https://github.com/wujieli0207/renobrief
Keywords: renovation,home-improvement,budget,remodel,interior-design,estimator
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Home Automation
Classifier: Intended Audience :: End Users/Desktop
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# renobrief

Estimate home renovation **budget ranges** by room, style, and scope — a small
companion tool for [RenoBrief AI](https://renobrief.com), which turns a room
photo into a redesigned image plus a contractor-ready one-page brief.

## Install

```bash
pip install renobrief
```

## CLI

```bash
renobrief kitchen --style quiet_luxury --scope gut --sqft 200
# kitchen · quiet_luxury · gut
# Estimated budget: $44,800 – $186,667
# Get a full visual redesign + contractor-ready brief: https://renobrief.com
```

## Python

```python
from renobrief import estimate

low, high = estimate("bathroom", style="japandi", scope="remodel")
print(low, high)
```

Rooms: `bathroom`, `kitchen`, `bedroom`, `living_room`, `exterior`
Styles: `minimalist`, `farmhouse`, `modern`, `japandi`, `quiet_luxury`
Scopes: `refresh`, `remodel`, `gut`

> Figures are planning ballparks (US market), not quotes. For an actual
> redesigned visualization, materials list, and a brief a contractor can quote
> against, use **[RenoBrief AI](https://renobrief.com)**.

## License

MIT
