Skip to content

Commit

Permalink
Fix #17: add missing beautifulsoup4 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ojacques committed Sep 1, 2022
1 parent 92fb731 commit cd69856
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mkdocs>=1.0.3
gitpython
requests
beautifulsoup4
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -15,7 +15,8 @@
install_requires=[
'mkdocs>=1.0.3',
'gitpython',
'requests'
'requests',
'beautifulsoup4'
],
classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit cd69856

Please sign in to comment.