-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix MkDocs reference share buttons (#36)
- Loading branch information
1 parent
78a2f3f
commit 6d146f8
Showing
3 changed files
with
25 additions
and
28 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
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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "mkdocs-ultralytics-plugin" | ||
version = "0.0.37" | ||
version = "0.0.38" | ||
description = "An MkDocs plugin that provides Ultralytics Docs customizations at https://docs.ultralytics.com." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
|
@@ -19,28 +19,28 @@ maintainers = [ | |
{ name = "Glenn Jocher", email = "[email protected]" } # Optional | ||
] | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Topic :: Software Development', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS', | ||
'Operating System :: Microsoft :: Windows', | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS", | ||
"Operating System :: Microsoft :: Windows", | ||
] # Optional, for a list of valid classifiers, see https://pypi.org/classifiers/ | ||
dependencies = [ | ||
'mkdocs>=1.0', | ||
'beautifulsoup4>=4.9.3', | ||
'pyyaml', | ||
'requests>=2.31.0', | ||
"mkdocs>=1.0", | ||
"beautifulsoup4>=4.9.3", | ||
"pyyaml", | ||
"requests>=2.31.0", | ||
] | ||
|
||
[project.urls] # Optional | ||
|
@@ -49,7 +49,7 @@ dependencies = [ | |
"Source" = "https://github.com/ultralytics/mkdocs/" | ||
|
||
[project.entry-points."mkdocs.plugins"] | ||
ultralytics = "plugin:MetaPlugin" # executes the function `MetaPlugin` from this package when 'plugin' is called. | ||
ultralytics = "plugin:MetaPlugin" # executes the function `MetaPlugin` from this package when "plugin" is called. | ||
|
||
[project.optional-dependencies] # Optional | ||
dev = ["pytest"] | ||
|