forked from orzih/mkdocs-with-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.31 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
35
36
37
38
39
40
41
42
import io
from setuptools import find_packages, setup
setup(
name='mkdocs-with-pdf',
version='0.9.3',
description='Generate a single PDF file from MkDocs repository', # noqa E501
long_description=io.open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
keywords='mkdocs pdf weasyprint',
url='https://github.com/orzih/mkdocs-with-pdf',
author='orzih',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6',
install_requires=[
'mkdocs>=1.1',
'weasyprint>=0.44',
'beautifulsoup4>=4.6.3',
'libsass>=0.15'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
packages=find_packages(),
include_package_data=True,
entry_points={
'mkdocs.plugins': [
'with-pdf = mkdocs_with_pdf.plugin:WithPdfPlugin'
]
}
)