-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 905 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 905 Bytes
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
from setuptools import setup, find_packages
setup(
name="mkdocs-author-plugin",
version="0.1.0",
description="Add manually defined authors to MkDocs pages.",
author="Jakob Klotz",
author_email="jakob.klotz@mci.edu",
url="https://github.com/mciwing/mkdocs-author-plugin",
packages=find_packages(),
install_requires=["mkdocs>=1.6.1", "pyyaml"],
python_requires=">=3.11,<3.13",
entry_points={
"mkdocs.plugins": [
"authors = mkdocs_author_plugin.plugin:AuthorsPlugin",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
],
)