This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
forked from zachhannum/mkdocs-tooltipster-links-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (39 loc) · 1.44 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
from setuptools import setup, find_packages
version = "0.6.2"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(
name="mkdocs-preview-links-plugin",
version=version,
description="An MkDocs plugin that adds tooltips to preview the content of page links using tooltipster.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs, preview, tooltipster, tooltipst, plugin",
url="https://github.com/Mara-Li/mkdocs-preview-links-plugin",
author="Mara-Li",
author_email="[email protected]",
license="MIT",
python_requires=">=3.7",
install_requires=required,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(),
entry_points={
"mkdocs.plugins": [
"tooltipster-links ="
" mkdocs_tooltipster_links_plugin.plugin:TooltipsterLinks"
]
},
)