|
4 | 4 | from distutils.core import setup
|
5 | 5 | import os
|
6 | 6 |
|
7 |
| -long_description="""HTML parser designed to follow the WHATWG HTML5 |
| 7 | +long_description="""HTML parser designed to follow the HTML5 |
8 | 8 | specification. The parser is designed to handle all flavours of HTML and
|
9 | 9 | parses invalid documents using well-defined error handling rules compatible
|
10 | 10 | with the behaviour of major desktop web browsers.
|
11 | 11 |
|
12 | 12 | Output is to a tree structure; the current release supports output to
|
13 |
| -DOM, ElementTree, lxml and BeautifulSoup tree formats as well as a |
| 13 | +DOM, ElementTree and lxml tree formats as well as a |
14 | 14 | simple custom format"""
|
15 | 15 |
|
16 | 16 | classifiers=[
|
17 |
| - 'Development Status :: 4 - Beta', |
| 17 | + 'Development Status :: 5 - Stable', |
18 | 18 | 'Intended Audience :: Developers',
|
19 | 19 | 'License :: OSI Approved :: MIT License',
|
20 | 20 | 'Operating System :: OS Independent',
|
|
27 | 27 | version='1.0',
|
28 | 28 | url='http://code.google.com/p/html5lib/',
|
29 | 29 | license="MIT License",
|
30 |
| - description='HTML parser based on the WHAT-WG Web Applications 1.0' |
31 |
| - '("HTML5") specifcation', |
| 30 | + description='HTML parser based on the HTML5 specifcation', |
32 | 31 | long_description=long_description,
|
33 | 32 | classifiers=classifiers,
|
34 | 33 | maintainer='James Graham',
|
35 |
| - maintainer_email='jg307@cam.ac.uk', |
| 34 | + maintainer_email='james@hoppipolla.co.uk', |
36 | 35 | packages=['html5lib'] + ['html5lib.'+name
|
37 | 36 | for name in os.listdir(os.path.join('src','html5lib'))
|
38 | 37 | if os.path.isdir(os.path.join('src','html5lib',name)) and
|
|
0 commit comments