forked from magicaljellybeans/mkdocs_schema_reader
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (23 loc) · 854 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mkdocs_schema_reader",
version="0.12.1",
description="A MkDocs plugin to collate json schema files and convert them into markdown files",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs, schema, json, plugin",
url="https://github.com/magicaljellybeans/mkdocs_schema_reader",
author="Tom Robinson",
author_email="[email protected]",
license="MIT",
python_requires=">=3.6",
install_requires=["mkdocs>=1.0.4", "jsonschema2md>=0.3.0"],
packages=find_packages(),
entry_points={
"mkdocs.plugins": [
"schema_reader = mkdocs_schema_reader.schema_reader:SchemaReader"
]
},
)