-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (45 loc) · 1.58 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
50
51
52
from setuptools import setup, find_packages
VERSION = "0.1.0"
def readme():
"""print long description"""
with open("README.md", encoding="utf-8") as f:
return f.read()
LONG_DESCRIPTION = "A mkdocs plugin that do things in the markdown file."
setup(
name="mkdocs-evan361425-plugin",
version=VERSION,
description="A set of MkDocs plugins",
long_description=LONG_DESCRIPTION,
keywords="mkdocs python markdown",
url="https://github.com/evan361425/evan361425.github.io",
author="Lu Shueh Chou",
author_email="[email protected]",
license="MIT",
python_requires=">=3.5",
install_requires=[
"setuptools>=18.5",
"beautifulsoup4>=4.6.3",
"mkdocs>=1.0.4",
"requests",
"pymdown-extensions >= 8.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=["*.tests"]),
entry_points={
"mkdocs.plugins": [
"figcaption = evan361425.figcaption:MarkdownFigcaptionPlugin",
"tablecaption = evan361425.tablecaption:MarkdownTablecaptionPlugin",
"serve_simple = evan361425.serve_simple:MarkdownServeSimplePlugin",
]
},
)