-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (38 loc) · 1.06 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
43
44
from setuptools import setup, find_packages # type: ignore
def readme():
# type: () -> str
with open('README.md') as f:
return f.read()
VERSION = '1.3.0'
long_description = (
"This is a mkdocs theme, "
"this supports some CSS-styles to publish your documents "
"with PDF or printing."
"Please see the 'Demo' section"
)
setup(
name="mkdocs-theme-topdf",
version=VERSION,
url='https://github.com/kuri65536/mkdocs-theme-topdf',
license='MPL2',
description='a mkdocs theme for generate pdf or printing',
author='Shimoda',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
test_suite='tests',
entry_points={
'mkdocs.themes': [
'topdf = topdf',
]
},
require=["mkdocs",
"python-docx",
"bs4",
"requests",
"opsdroid-get-image-size",
],
long_description_content_type='text/markdown',
long_description=long_description + "\n\n" + readme(),
zip_safe=False
)