diff --git a/packages/markitdown/pyproject.toml b/packages/markitdown/pyproject.toml index 79f67d2..46ebb8b 100644 --- a/packages/markitdown/pyproject.toml +++ b/packages/markitdown/pyproject.toml @@ -29,6 +29,8 @@ dependencies = [ "markdownify", "magika~=0.6.1", "charset-normalizer", + + "defusedxml>=0.7.1", ] [project.optional-dependencies] @@ -75,6 +77,8 @@ features = ["all"] features = ["all"] extra-dependencies = [ "openai", + + "defusedxml>=0.7.1", ] [tool.hatch.envs.types] @@ -82,6 +86,8 @@ features = ["all"] extra-dependencies = [ "openai", "mypy>=1.0.0", + + "defusedxml>=0.7.1", ] [tool.hatch.envs.types.scripts] diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..c19d53e --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +defusedxml>=0.7.1