diff --git a/requirements.txt b/requirements.txt index 73f9d25..d49735b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ mkdocs>=1.0.3 gitpython requests +beautifulsoup4 diff --git a/setup.py b/setup.py index 4826bf5..9f6f943 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='mkdocs-git-committers-plugin-2', - version='1.0.0', + version='1.0.1', description='An MkDocs plugin to create a list of contributors on the page', long_description='The git-committers plugin will seed the template context with a list of github committers and other useful GIT info such as last modified date', keywords='mkdocs pdf github', @@ -15,7 +15,8 @@ install_requires=[ 'mkdocs>=1.0.3', 'gitpython', - 'requests' + 'requests', + 'beautifulsoup4' ], classifiers=[ 'Development Status :: 4 - Beta',