summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2022-04-08 17:05:06 -0400
committerLeonard Richardson <leonardr@segfault.org>2022-04-08 17:05:06 -0400
commit0c75dd4a83674e840dd9ec3e34d974ec69070d0b (patch)
treecbeda86f32fd22ea520e1e8cefc17a913bc4216b /setup.py
parent4430c10a14d52babc32eb1d069901e64cde21ecb (diff)
Some cleanup work to get more consistent and complete about what gets packaged with the Beautiful Soup release.
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'],