-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 717 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='docStyler',
version='0.1.0',
packages=['docstyler'],
url='https://github.com/hfagerlund/mkdocs-docstyler-plugin',
license='BSD-3',
author='Heini Fagerlund',
description='docstyler is a MkDocs plugin for adding persistent, preferred and alternate external stylesheet links to custom themes.',
python_requires='>=3.6.4',
install_requires=[
'mkdocs>=1.0.4'
],
entry_points={
'mkdocs.plugins': [
'docstyler = docstyler.plugin:docStyler',
]
},
package_data={'docstyler': ['templates/*.html']},
include_package_data = True,
long_description=open('README.md').read(),
)