-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update setup.py with additional details
- add gitignore
- Loading branch information
1 parent
8e100ef
commit bf5fb2a
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|