-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 722 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 722 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
from setuptools import setup, find_packages
setup(
name='mkdocs-pagelist-plugin',
version='0.2.2',
description='A MkDocs plugin to list pages based on tags and folders',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords='mkdocs python markdown pagelist',
url='https://github.com/alanpt/mkdocs-pagelist-plugin',
author='Alan Proctor-Thomson',
author_email='alanpt@gmail.com',
license='MIT',
install_requires=[
'mkdocs>=1.0'
],
packages=find_packages(),
include_package_data=True,
entry_points={
'mkdocs.plugins': [
'pagelist = mkdocs_pagelist_plugin:PageListPlugin'
]
}
)