Skip to content

Commit 509aed0

Browse files
committed
Move the module into the readable_lxml space so that we can actually import it nicely.
1 parent 2738782 commit 509aed0

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ dist
77
/lib
88
/local
99
/man
10+
/share
1011
nosetests.xml
1112
.coverage

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
include_package_data=True,
3434
zip_safe=False,
3535
install_requires=install_requires,
36+
tests_require=tests_require,
3637
extras_require={'test': tests_require},
3738
test_suite = "nose.collector",
3839
entry_points={

src/readability_lxml/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
import sys
33

4-
from readability_lxmly import VERSION
4+
from readability_lxml import VERSION
55
from readability_lxml.readability import Document
66

77

src/tests/test_article_only.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import unittest
33

4-
from readability import Document
4+
from readability_lxml.readability import Document
55

66

77
SAMPLES = os.path.join(os.path.dirname(__file__), 'samples')

0 commit comments

Comments
 (0)