-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (34 loc) · 1.29 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-exclude-search",
version="0.6.6",
description="A mkdocs plugin that lets you exclude selected files or sections "
"from the search index.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="mkdocs",
url="https://github.com/chrieke/mkdocs-exclude-search",
author="Christoph Rieke",
author_email="[email protected]",
license="MIT",
python_requires=">=3.6",
install_requires=["mkdocs>=1.0.4"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(exclude=("tests", "docs")),
entry_points={
"mkdocs.plugins": ["exclude-search = mkdocs_exclude_search:ExcludeSearch"]
},
)