You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
582 B
23 lines
582 B
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="html_to_pdf",
|
|
version="0.2",
|
|
install_requires=[
|
|
'pyppeteer'
|
|
],
|
|
author="Ugo Finnendahl",
|
|
author_email="ugo@finnendahl.de",
|
|
description="Convert html to pdf",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="git.finnendahl.de",
|
|
packages=setuptools.find_packages(),
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': ['html_to_pdf=html_to_pdf:main']
|
|
}
|
|
)
|
|
|