-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
36 lines (34 loc) · 1.31 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
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="mkdocs-enumerate-headings-plugin",
version="0.6.2",
description="MkDocs Plugin to enumerate the headings (h1-h6) across site pages",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs enumerate headings plugin",
url="https://github.com/timvink/mkdocs-enumerate-headings-plugin.git",
author="timvink",
author_email="vinktim@gmail.com",
license="MIT",
python_requires=">=3.7",
install_requires=["mkdocs>=1.0.4", "beautifulsoup4>=4.9.0"],
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_enumerate_headings_plugin"],
entry_points={
"mkdocs.plugins": [
"enumerate-headings=mkdocs_enumerate_headings_plugin.plugin:EnumerateHeadingsPlugin",
]
},
)