forked from Mara-Li/mkdocs-ezlinked-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.15 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
from setuptools import setup, find_packages
description = "A mkdocs plugin that makes linking to other documents easy."
long_description = description
version="0.3.3"
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
required=f.read().splitlines()
setup(
name="mkdocs-ezlinked-plugin",
version=version,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs, wikilinks, ezlinks, obsidian, roam",
url="https://github.com/Mara-Li/mkdocs-ezlinks-plugin",
author="Mara-Li",
author_email="[email protected]",
license="MIT",
python_requires=">=3.6",
install_requires=required,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
],
packages=find_packages(exclude=["test.*"]),
entry_points={
"mkdocs.plugins": ["ezlinks = mkdocs_ezlinks_plugin.plugin:EzLinksPlugin"]
},
)