-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Benjamin Bittner
committed
Jan 21, 2024
1 parent
5861c2c
commit eafaa48
Showing
1 changed file
with
5 additions
and
7 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setup( | ||
name="mkdocs-kroki-plugin", | ||
version="0.7.0", | ||
version="0.7.1", | ||
description="MkDocs plugin for Kroki-Diagrams", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
|
@@ -17,8 +17,8 @@ | |
author="Benjamin Bittner", | ||
author_email="[email protected]", | ||
license="MIT", | ||
python_requires=">=3.6", | ||
install_requires=["mkdocs>=1.4.0", "requests>=2.27.0"], | ||
python_requires=">=3.10", | ||
install_requires=["mkdocs>=1.5.0", "requests>=2.27.0"], | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
|
@@ -27,12 +27,10 @@ | |
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
], | ||
packages=find_packages(), | ||
entry_points={"mkdocs.plugins": ["kroki = kroki.plugin:KrokiPlugin"]}, | ||
|