patx/micropie
update `README.md` to include instructions for new pip install options new in .10
Commit d8c132b · patx · 2025-06-09T21:24:02-04:00
Comments
No comments yet.
Diff
diff --git a/README.md b/README.md
index 08ef66b..3aa1a02 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,12 @@ Install MicroPie with all optional dependencies via pip:
```bash
pip install micropie[standard]
```
-This will install MicroPie along with `jinja2` for template rendering, `orjson` for handling JSON requests/responses, and `multipart`/`aiofiles` for parsing multipart form data.
+This will install MicroPie along with `jinja2` for template rendering, and `multipart`/`aiofiles` for parsing multipart form data.
+
+If you would like to install **all** optional dependencies (everything from `standard` plus `orjson` and `uvicorn` you can run:
+```bash
+pip install micropie[all]
+```
### **Minimal Setup**
You can also install MicroPie without ANY dependencies via pip: