forked from oniboni/mkdocs-kroki-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
from pathlib import Path
# read the contents of your README file
PROJ_DIR = Path(__file__).resolve().parent
with open(PROJ_DIR / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="mkdocs-kroki-plugin",
version="0.6.1",
description="MkDocs plugin for Kroki-Diagrams",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs python markdown kroi diagram",
url="https://github.com/AVATEAM-IT-SYSTEMHAUS/mkdocs-kroki-plugin",
author="Benjamin Bittner",
author_email="[email protected]",
license="MIT",
python_requires=">=3.6",
install_requires=["mkdocs>=1.3.0", "requests>=2.27.0"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"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",
],
packages=find_packages(),
entry_points={"mkdocs.plugins": ["kroki = kroki.plugin:KrokiPlugin"]},
)