Add optional dependency for multi-file support to setup.py.

This commit is contained in:
Dan Helfman 2021-10-22 13:15:36 -07:00
parent d0e2f8c547
commit 4547459d66
1 changed files with 3 additions and 0 deletions

View File

@ -26,5 +26,8 @@ setup(
]
},
install_requires=(),
extras_require = {
'multi_file': ['MarkdownPP'],
}
include_package_data=True,
)