Skip to content

Commit 3a020b3

Browse files
committed
📝 Update README to reference uv instead of Poetry
Update installation and development instructions in README Modify documentation to reflect migration from Poetry to UV: - Change installation command from `poetry add` to `uv add` - Update development setup instructions with UV-specific commands - Add link to UV GitHub repository This aligns documentation with the recent dependency management change.
1 parent ac19020 commit 3a020b3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ You can install signalrgb-python using pip:
3535
pip install signalrgb
3636
```
3737

38-
Or if you prefer to use Poetry:
38+
Or if you prefer to use [uv](https://github.com/astral-sh/uv):
3939

4040
```bash
41-
poetry add signalrgb
41+
uv add signalrgb
4242
```
4343

4444
### Prerequisites
@@ -183,9 +183,9 @@ To set up the development environment:
183183
git clone https://github.com/hyperb1iss/signalrgb-python.git
184184
cd signalrgb-python
185185
```
186-
2. Install Poetry if you haven't already: `pip install poetry`
187-
3. Install dependencies: `poetry install`
188-
4. Activate the virtual environment: `poetry shell`
186+
2. Install [uv](https://github.com/astral-sh/uv) if you haven't already
187+
3. Install dependencies: `uv sync`
188+
4. Activate a virtual environment if needed: `uv venv .venv && . .venv/bin/activate`
189189

190190
To run tests:
191191

0 commit comments

Comments
 (0)