-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.49 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
from setuptools import setup
with open("README.md","r") as f:
long_description = f.read()
setup(
name="mkdocs-panzoom-plugin",
version="0.1.3",
description="MkDocs Plugin to enable pan & zoom on images and mermaid diagrams",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs zoom pan plugin mermaid images",
url="https://github.com/PLAYG0N/mkdocs-panzoom.git",
author="PLAYG0N",
author_email="playg0nofficial@gmail.com",
license="MIT",
python_requires=">=3.7",
install_requires=["mkdocs>=1.0.4", "beautifulsoup4>=4.9.0"],
# package_dir={"": "mkdocs_panzoom_plugin"},
# package_data={"custom": ["*.css","*.js" ,"*LICENCE"]},
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=["mkdocs_panzoom_plugin"],
entry_points={
"mkdocs.plugins": [
"panzoom=mkdocs_panzoom_plugin.plugin:PanZoomPlugin",
]
},
)