Skip to content

Commit bcf2bd0

Browse files
docs: remove pip install references, replace with uv (#24)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: deviantintegral <255023+deviantintegral@users.noreply.github.com>
1 parent 6eca58f commit bcf2bd0

2 files changed

Lines changed: 2 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,13 @@ Async Python library for controlling Dimplex, Faber, and Real Flame fireplaces v
1010

1111
## Installation
1212

13-
```bash
14-
pip install flameconnect
15-
```
16-
17-
Or with [uv](https://docs.astral.sh/uv/):
18-
1913
```bash
2014
uv add flameconnect
2115
```
2216

2317
To include the interactive terminal dashboard (TUI):
2418

2519
```bash
26-
pip install flameconnect[tui]
27-
# or
2820
uv add flameconnect[tui]
2921
```
3022

@@ -156,7 +148,7 @@ flameconnect tui
156148
[Textual](https://textual.textualize.io/). It requires the TUI extra:
157149

158150
```bash
159-
pip install flameconnect[tui]
151+
uv add flameconnect[tui]
160152
```
161153

162154
The dashboard displays real-time fireplace status and auto-refreshes every 10

src/flameconnect/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,7 @@ async def cmd_tui(*, verbose: bool = False) -> None:
816816
from flameconnect.tui import run_tui
817817
except ImportError:
818818
print("The TUI requires the 'tui' extra. Install with:")
819-
print(" pip install flameconnect[tui]")
820-
print(" # or: uv add flameconnect[tui]")
819+
print(" uv add flameconnect[tui]")
821820
sys.exit(1)
822821
await run_tui(verbose=verbose)
823822

0 commit comments

Comments
 (0)