-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 685 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='SwaggerPlugin',
version='0.0.1',
packages=['swagger'],
url='https://github.com/allevo/mkdocs-swagger-plugin',
license='MIT',
author='Tommaso Allevi',
author_email='tomallevi@gmail.com',
description='Fire http request described in a swagger file',
install_requires=['mkdocs'],
include_package_data=True,
# The following rows are important to register your plugin.
# The format is "(plugin name) = (plugin folder):(class name)"
# Without them, mkdocs will not be able to recognize it.
entry_points={
'mkdocs.plugins': [
'swagger = swagger:Swagger',
]
},
)