Skip to content

Commit a5cf93f

Browse files
committed
First cut at a setup.py file. Not quite perfect; creates an unnecessary build directory and doesn't install tests
--HG-- extra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/trunk%40285
1 parent 812be4c commit a5cf93f

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from distutils.core import setup
2+
setup(name='html5lib',
3+
version='0.1',
4+
url='http://code.google.com/p/html5lib/',
5+
description='HTML parser based on the WHAT-WG Web Applications 1.0'
6+
'("HTML5") specifcation',
7+
packages=['html5lib'],
8+
package_dir = {'html5lib': 'src'}
9+
)

0 commit comments

Comments
 (0)