Skip to content

Commit 2225181

Browse files
committed
Some chnges to the metadata
1 parent c68db9d commit 2225181

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
from distutils.core import setup
55
import os
66

7-
long_description="""HTML parser designed to follow the WHATWG HTML5
7+
long_description="""HTML parser designed to follow the HTML5
88
specification. The parser is designed to handle all flavours of HTML and
99
parses invalid documents using well-defined error handling rules compatible
1010
with the behaviour of major desktop web browsers.
1111
1212
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
1414
simple custom format"""
1515

1616
classifiers=[
17-
'Development Status :: 4 - Beta',
17+
'Development Status :: 5 - Stable',
1818
'Intended Audience :: Developers',
1919
'License :: OSI Approved :: MIT License',
2020
'Operating System :: OS Independent',
@@ -27,12 +27,11 @@
2727
version='1.0',
2828
url='http://code.google.com/p/html5lib/',
2929
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',
3231
long_description=long_description,
3332
classifiers=classifiers,
3433
maintainer='James Graham',
35-
maintainer_email='jg307@cam.ac.uk',
34+
maintainer_email='james@hoppipolla.co.uk',
3635
packages=['html5lib'] + ['html5lib.'+name
3736
for name in os.listdir(os.path.join('src','html5lib'))
3837
if os.path.isdir(os.path.join('src','html5lib',name)) and

0 commit comments

Comments
 (0)