From 8cb06da0b81e09c81144d1f0a74be03aaa36ab93 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Fri, 23 Feb 2024 09:56:23 -0500 Subject: [PATCH] Credit dependencies in the README --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 9daff01..30c3e60 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,16 @@ reading Microsoft Outlook .msg files and converting them to .eml format, which is the standard MIME format for email messages. +This project uses +[compoundfiles](https://pypi.org/project/compoundfiles/) +to navigate the .msg file structure, +[compressed-rtf](https://pypi.org/project/compressed-rtf/) +and [rtfparse](https://pypi.org/project/rtfparse/) +to unpack HTML message bodies, and +[html2text](https://pypi.org/project/html2text/) to +back-fill plain text message bodies when only an HTML body +is present. + Install the dependencies with: pip install -r requirements.txt