1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-05 08:27:22 +03:00
WeasyPrint/setup.py
2011-08-19 15:50:03 +02:00

37 lines
803 B
Python

"""
WeasyPrint
----------
WeasyPrint converts web documents (HTML, CSS, SVG, ...) to PDF.
See the documentation at http://weasyprint.org/
"""
from setuptools import setup
setup(
name='WeasyPrint',
version='0.1dev',
url='http://weasyprint.org/',
license='GNU Affero General Public License',
description='WeasyPrint converts web documents to PDF.',
long_description=__doc__,
packages=['weasy'],
zip_safe=False,
install_requires=[
'lxml',
'cssutils',
'PIL',
# Tricky to compile: 'pycairo', 'PyGTK',
# Not on PyPI: 'rsvg',
],
test_loader='attest:FancyReporter.test_loader',
test_suite='weasy.tests.tests',
entry_points = {
'console_scripts': [
'weasyprint = weasy:main',
],
}
)