Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gsnedders committed Apr 9, 2013
1 parent 14a27c0 commit 5bebb6e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from distutils.core import setup
import os

long_description="""HTML parser designed to follow the WHATWG HTML5
long_description="""HTML parser designed to follow the WHATWG HTML
specification. The parser is designed to handle all flavours of HTML and
parses invalid documents using well-defined error handling rules compatible
with the behaviour of major desktop web browsers.
Expand All @@ -16,23 +16,23 @@
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup :: HTML'
]

setup(name='html5lib',
version='0.95',
url='http:https://code.google.com/p/html5lib/',
version='1.0b1',
url='https:https://github.com/html5lib/html5lib-python',
license="MIT License",
description='HTML parser based on the WHAT-WG Web Applications 1.0'
'("HTML5") specifcation',
description='HTML parser based on the WHATWG HTML specifcation',
long_description=long_description,
classifiers=classifiers,
maintainer='James Graham',
maintainer_email='[email protected]',
packages=['html5lib'] + ['html5lib.'+name
for name in os.listdir(os.path.join('html5lib'))
if os.path.isdir(os.path.join('html5lib',name)) and
not name.startswith('.')],
install_requires=['six']
not name.startswith('.')]
)

0 comments on commit 5bebb6e

Please sign in to comment.