Skip to content

Commit

Permalink
Merge pull request #18 from ojacques/fix-17
Browse files Browse the repository at this point in the history
Fix #17: add missing beautifulsoup4 dependency
  • Loading branch information
ojacques authored Sep 1, 2022
2 parents 92fb731 + cd69856 commit 1c35a3f
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 1c35a3f

Please sign in to comment.