1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-08-17 00:20:42 +03:00

Initial project structure.

This commit is contained in:
Simon Sapin 2011-04-20 11:15:13 +02:00
commit 3b96a7e014
5 changed files with 33 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.pyc
*.egg-info

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
test:
python2 -m unittest weasy.tests

22
setup.py Normal file
View File

@ -0,0 +1,22 @@
"""
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'],
test_suite='weasy.tests',
zip_safe=False,
install_requires=[
'html5lib',
],
)

0
weasy/__init__.py Normal file
View File

7
weasy/tests.py Normal file
View File

@ -0,0 +1,7 @@
import unittest
import html5lib
class TestFoo(unittest.TestCase):
def test_foo(self):
pass