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

33 lines
717 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',
'Attest',
'PyPNG',
# Tricky to compile: 'pycairo', 'PyGTK',
# Not on PyPI: 'rsvg',
],
test_loader='attest:FancyReporter.test_loader',
test_suite='weasy.tests.tests',
)