From 26d3814da59f58dc1e9f291cafd75d0c739a92dc Mon Sep 17 00:00:00 2001 From: Jerry Pussinen Date: Wed, 27 Mar 2024 13:11:05 +0200 Subject: [PATCH] Add mention about extras --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 3504c42..070a010 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,19 @@ Dependency Injector with minimal boilerplate code, built-in support for FastAPI ## Install ```bash +pip install magic-di +``` + +With FastAPI integration: +```bash pip install 'magic-di[fastapi]' ``` +With Celery integration: +```bash +pip install 'magic-di[celery]' +``` + ## Getting Started ```python