|
1 |
| -from setuptools import setup |
| 1 | +from distutils.core import setup |
2 | 2 | import os
|
3 | 3 |
|
4 |
| -long_description="""HTML parser designed to follow the WHATWG HTML5 |
| 4 | +long_description="""HTML parser designed to follow the WHATWG HTML |
5 | 5 | specification. The parser is designed to handle all flavours of HTML and
|
6 | 6 | parses invalid documents using well-defined error handling rules compatible
|
7 | 7 | with the behaviour of major desktop web browsers.
|
|
16 | 16 | 'License :: OSI Approved :: MIT License',
|
17 | 17 | 'Operating System :: OS Independent',
|
18 | 18 | 'Programming Language :: Python',
|
| 19 | + 'Programming Language :: Python :: 2', |
| 20 | + 'Programming Language :: Python :: 3', |
19 | 21 | 'Topic :: Software Development :: Libraries :: Python Modules',
|
20 | 22 | 'Topic :: Text Processing :: Markup :: HTML'
|
21 | 23 | ]
|
22 | 24 |
|
23 | 25 | setup(name='html5lib',
|
24 |
| - version='0.95', |
25 |
| - url='http://code.google.com/p/html5lib/', |
| 26 | + version='1.0b1', |
| 27 | + url='https://github.com/html5lib/html5lib-python', |
26 | 28 | license="MIT License",
|
27 |
| - description='HTML parser based on the WHAT-WG Web Applications 1.0' |
28 |
| - '("HTML5") specifcation', |
| 29 | + description='HTML parser based on the WHATWG HTML specifcation', |
29 | 30 | long_description=long_description,
|
30 | 31 | classifiers=classifiers,
|
31 | 32 | maintainer='James Graham',
|
32 | 33 | maintainer_email='james@hoppipolla.co.uk',
|
33 | 34 | packages=['html5lib'] + ['html5lib.'+name
|
34 | 35 | for name in os.listdir(os.path.join('html5lib'))
|
35 | 36 | if os.path.isdir(os.path.join('html5lib',name)) and
|
36 |
| - not name.startswith('.')], |
37 |
| - install_requires=['six'] |
| 37 | + not name.startswith('.')] |
38 | 38 | )
|
0 commit comments