forked from bharel/mkdocs-render-swagger-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1001 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
29
30
31
import setuptools
# Read the contents of the README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="mkdocs-render-swagger-plugin",
version="0.0.3",
author="Bar Harel",
python_requires='>=3.6',
author_email="bzvi7919@gmail.com",
description="MKDocs plugin for rendering swagger & openapi files.",
url="https://github.com/bharel/mkdocs-render-swagger-plugin",
py_modules=["render_swagger"],
install_requires=["mkdocs"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'mkdocs.plugins': [
'render_swagger = render_swagger:SwaggerPlugin',
]
},
long_description=long_description,
long_description_content_type='text/markdown'
)