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

38 lines
842 B
Python
Raw Normal View History

2011-04-20 13:15:13 +04:00
"""
WeasyPrint
----------
WeasyPrint converts web documents (HTML, CSS, SVG, ...) to PDF.
See the documentation at http://weasyprint.org/
2011-04-20 13:15:13 +04:00
"""
from setuptools import setup
setup(
name='WeasyPrint',
version='0.1dev',
url='http://weasyprint.org/',
license='GNU Affero General Public License',
2011-04-20 13:15:13 +04:00
description='WeasyPrint converts web documents to PDF.',
long_description=__doc__,
packages=['weasy'],
zip_safe=False,
install_requires=[
'lxml',
'cssutils',
2011-08-19 17:50:03 +04:00
'PIL',
# Tricky to compile: 'pycairo'
# Not on PyPI: 'rsvg',
# Also depends on Pango with introspection
2011-04-20 13:15:13 +04:00
],
test_loader='attest:FancyReporter.test_loader',
test_suite='weasy.tests.tests',
entry_points={
2011-08-09 14:45:51 +04:00
'console_scripts': [
'weasyprint = weasy:main',
],
}
2011-04-20 13:15:13 +04:00
)