From e35c4bf0ccfec838bc79ece82fdb232c76349bea Mon Sep 17 00:00:00 2001 From: Pawel Sikora Date: Mon, 22 Aug 2022 07:39:14 +0200 Subject: [PATCH] Add missing pkgs into install_requires in setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c25f911..9bb29ce 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( author_email="sikor6@gmail.com", license="MIT", python_requires=">=3.6", - install_requires=["mkdocs>=1.1", "jinja2"], + install_requires=["mkdocs>=1.1", "jinja2", "mistune", "md2cf", "requests"], packages=find_packages(), entry_points={"mkdocs.plugins": ["mkdocs-with-confluence = mkdocs_with_confluence.plugin:MkdocsWithConfluence"]}, )