-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.21 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.21 KB
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
"""Sets up the parameters required by PyPI"""
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="mkdocs-alias-plugin",
version="0.11.1",
description="An MkDocs plugin allowing links to your pages using a custom alias",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="mkdocs python markdown alias link wiki",
url="https://alias.luten.dev/",
author="Eddy Luten",
author_email="eluten@pm.me",
license="MIT",
python_requires=">=3.9",
install_requires=["mkdocs", "markdown"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Documentation",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown",
],
packages=find_packages(exclude=["*.tests"]),
entry_points={"mkdocs.plugins": ["alias = alias.plugin:AliasPlugin"]},
)