docs: quote us-cpa extras install command

This commit is contained in:
Stefano Fiorini
2026-03-15 03:53:15 -05:00
parent 7187ba9ea3
commit b520bdc998
3 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
From `skills/us-cpa/`:
```bash
pip install -e .[dev]
pip install -e '.[dev]'
us-cpa --help
```
@@ -35,7 +35,7 @@ rsync -a --delete \
cd ~/.openclaw/workspace/skills/us-cpa
python3 -m venv .venv
. .venv/bin/activate
pip install -e .[dev]
pip install -e '.[dev]'
```
3. Verify the installed workspace wrapper:

View File

@@ -7,7 +7,7 @@ Standalone Python CLI package for the `us-cpa` skill.
From `skills/us-cpa/`:
```bash
pip install -e .[dev]
pip install -e '.[dev]'
```
## OpenClaw installation
@@ -28,7 +28,7 @@ rsync -a --delete \
cd ~/.openclaw/workspace/skills/us-cpa
python3 -m venv .venv
. .venv/bin/activate
pip install -e .[dev]
pip install -e '.[dev]'
```
3. Run the workspace wrapper:

View File

@@ -36,7 +36,7 @@ class UsCpaCliSmokeTests(unittest.TestCase):
def test_readme_documents_install_and_script_usage(self) -> None:
readme = (SKILL_DIR / "README.md").read_text()
self.assertIn("pip install -e .[dev]", readme)
self.assertIn("pip install -e '.[dev]'", readme)
self.assertIn("scripts/us-cpa", readme)
self.assertIn("python -m unittest", readme)