update `README.md` to include instructions for new pip install options new in .10

Commit d8c132b · patx · 2025-06-09T21:24:02-04:00

Changeset
d8c132b92c97f5d5b2b2529ddcccde0d76e9583f
Parents
3c752ebdeb91fe290d677efbd93af053d157f68b

View source at this commit

Comments

No comments yet.

Log in to comment

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: