Skip to content

Commit 766648f

Browse files
committed
more metadata in setup.py
--HG-- branch : 0.2_branch extra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/branches/0.2_branch%40422
1 parent 38e12d4 commit 766648f

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

setup.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,34 @@
11
from distutils.core import setup
2+
3+
long_description="""HTML parser designed to follow the WHATWG HTML5
4+
specifiction. The parser is designed to handle all flavours of HTML and
5+
parses invalid documents using well-defined error handling rules compatible
6+
with the behaviour of major desktop web browsers.
7+
8+
Output is to a tree structure; the current release supports output to
9+
a custom tree similar to DOM and to ElementTree.
10+
"""
11+
12+
classifiers=[
13+
'Development Status :: 3 - Alpha',
14+
'Intended Audience :: Developers',
15+
'License :: OSI Approved :: MIT License',
16+
'Operating System :: OS Independent',
17+
'Programming Language :: Python',
18+
'Topic :: Software Development :: Libraries :: Python Modules',
19+
'Topic :: Text Processing :: Markup :: HTML'
20+
],
21+
222
setup(name='html5lib',
3-
version='0.1',
23+
version='0.2',
424
url='http://code.google.com/p/html5lib/',
525
license="MIT License",
626
description='HTML parser based on the WHAT-WG Web Applications 1.0'
727
'("HTML5") specifcation',
28+
long_description=long_description,
29+
classifiers=classifiers,
30+
maintainer='James Graham',
31+
maintainer_email='jg307@cam.ac.uk',
832
packages=['html5lib', 'html5lib.treebuilders'],
933
package_dir = {'html5lib': 'src',
1034
'html5lib.treebuilders': 'src/treebuilders'}

0 commit comments

Comments
 (0)