diff --git a/README.md b/README.md index 5b49236..8ebf60d 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ This server requires Python 3.10+ and the following packages: * `httpx`: For asynchronous API requests (e.g., Wikipedia). ```bash -pip install uvicorn starlette Pillow requests httpx +pip install -r requirements.txt ``` ### Setup diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2917735 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +uvicorn +starlette +requests +httpx +Pillow