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

29 lines
588 B
Python
Raw Normal View History

2011-04-20 13:15:13 +04:00
"""
WeasyPrint
----------
WeasyPrint converts web documents (HTML, CSS, SVG, ...) to PDF.
"""
from setuptools import setup
setup(
name='WeasyPrint',
version='0.1dev',
description='WeasyPrint converts web documents to PDF.',
long_description=__doc__,
packages=['weasy'],
zip_safe=False,
install_requires=[
'html5lib',
'lxml',
'cssutils',
'Attest',
# Tricky to compile: 'pycairo', 'PyGTK',
# Not on PyPI: 'rsvg',
2011-04-20 13:15:13 +04:00
],
test_loader='attest:FancyReporter.test_loader',
test_suite='weasy.tests.tests',
2011-04-20 13:15:13 +04:00
)