summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index caa87a8..e96eca7 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,8 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
- packages=find_packages(exclude=['tests*', '*.tests*']),
+ packages=['bs4', 'bs4/builder', 'bs4/tests'],
+ # NOTE: Stuff like the documentation is included via MANIFEST.in
extras_require = {
'lxml' : [ 'lxml'],
'html5lib' : ['html5lib'],