-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (26 loc) · 904 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
27
28
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="mkdocs-swagger-ui-tag",
version="0.6.11",
author="Blueswen",
author_email="[email protected]",
url="https://blueswen.github.io/mkdocs-swagger-ui-tag",
project_urls={
"Source": "https://github.com/Blueswen/mkdocs-swagger-ui-tag",
},
keywords=["mkdocs", "plugin", "swagger-ui", "openapi"],
packages=find_packages(),
license="MIT",
description="A MkDocs plugin supports for add Swagger UI in page.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["beautifulsoup4>=4.11.1"],
include_package_data=True,
entry_points={
"mkdocs.plugins": [
"swagger-ui-tag = mkdocs_swagger_ui_tag.plugin:SwaggerUIPlugin",
]
},
)