-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.14 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
"""Sets up the parameters required by PyPI"""
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
setup(
name='mkdocs-categories-plugin',
version='0.5.0',
description=
'An MkDocs plugin allowing for categorization of pages',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='mkdocs python markdown category categories link wiki',
url='https://github.com/eddyluten/mkdocs-categories-plugin',
author='Eddy Luten',
author_email='eddyluten@gmail.com',
license='MIT',
python_requires='>=3.10',
install_requires=[
'mkdocs',
'natsort>=8.4.0'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=['*.tests']),
entry_points={
'mkdocs.plugins': ['categories = categories.plugin:CategoriesPlugin']
})