Skip to content

Commit

Permalink
chore: Fix speech_recognition.recognizers would be ignored
Browse files Browse the repository at this point in the history
>_Warning: Package 'speech_recognition.recognizers' is absent from the `packages` configuration.
  • Loading branch information
ftnext committed Oct 20, 2024
1 parent d447aef commit b0c91ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import stat

from setuptools import setup
from setuptools import find_packages, setup
from setuptools.command.install import install

import speech_recognition
Expand Down Expand Up @@ -38,7 +38,7 @@ def run(self):
setup(
name="SpeechRecognition",
version=speech_recognition.__version__,
packages=["speech_recognition"],
packages=find_packages(exclude=["tests.*", "test"]),
include_package_data=True,
cmdclass={"install": InstallWithExtraSteps},

Expand Down

0 comments on commit b0c91ae

Please sign in to comment.