Skip to content

Commit

Permalink
- update setup.py with additional details
Browse files Browse the repository at this point in the history
- add gitignore
  • Loading branch information
james-geiger committed Mar 21, 2024
1 parent 8e100ef commit bf5fb2a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
setup(
name="mkdocs-required-tags-plugin",
packages=find_packages(),
version="0.0.2",
keywords="mkdocs plugin tags required",
url="https://github.com/unmc-vcr/mkdocs-required-tags-plugin",
author="James Geiger",
author_email="[email protected]",
license="MIT",
python_requires=">=3.8",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"mkdocs.plugins": [
"required-tags = src.plugin:RequiredTagsPlugin"
Expand Down

0 comments on commit bf5fb2a

Please sign in to comment.