-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·49 lines (45 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
import os
from setuptools import setup, find_packages
def readme():
"""print long description"""
with open('README.md') as f:
return f.read()
long_description = (
"This is a mkdocs plugin that could enable the mermaid graph in the markdown file."
"Please follow the instruction in reame to enable this plugin"
)
setup(
name='mkdocs-mermaid-plugin',
version='0.1.1',
description='A MkDocs plugin that support mermaid graph in markdown file',
long_description=long_description,
keywords='mkdocs python markdown mermaid',
url='https://github.com/pugong/mkdocs-mermaid-plugin',
author='pugong',
author_email='pugong.liu@gmail.com',
license='MIT',
python_requires='>=2.7',
install_requires=[
'setuptools>=18.5',
'beautifulsoup4>=4.6.3',
'mkdocs>=1.0.4',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
packages=find_packages(exclude=['*.tests']),
entry_points={
'mkdocs.plugins': [
'markdownmermaid = markdownmermaid.plugin:MarkdownMermaidPlugin'
]
}
)