diff options
author | Thomas Kluyver <takowl@gmail.com> | 2011-06-28 22:52:25 +0100 |
---|---|---|
committer | Thomas Kluyver <takowl@gmail.com> | 2011-06-28 22:52:25 +0100 |
commit | 828b557307123d667d073faf0cf35bc00f294dc5 (patch) | |
tree | 5f663c6fc69b77e3894b63d6e90abd8c11e0af88 /setup.py | |
parent | 2b021f438d1ac986a4d6d5f2d205d27b35d8e93c (diff) |
Move tests into package so they can be converted by 2to3.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,6 +11,6 @@ setup(name="BeautifulSoup", version="4.0alpha", author="Leonard Richardson", url="http://www.crummy.com/software/BeautifulSoup/", - packages=['bs4', 'bs4.builder'], + packages=['bs4', 'bs4.builder', 'bs4.tests'], cmdclass = {'build_py':build_py} ) |