Skip to content

Commit 5bebb6e

Browse files
committed
Update setup.py
1 parent 14a27c0 commit 5bebb6e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from setuptools import setup
1+
from distutils.core import setup
22
import os
33

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

2325
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',
2628
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',
2930
long_description=long_description,
3031
classifiers=classifiers,
3132
maintainer='James Graham',
3233
maintainer_email='james@hoppipolla.co.uk',
3334
packages=['html5lib'] + ['html5lib.'+name
3435
for name in os.listdir(os.path.join('html5lib'))
3536
if os.path.isdir(os.path.join('html5lib',name)) and
36-
not name.startswith('.')],
37-
install_requires=['six']
37+
not name.startswith('.')]
3838
)

0 commit comments

Comments
 (0)