Skip to content

Commit

Permalink
update demo setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
bejager committed May 3, 2024
1 parent 9a4ddcc commit 5917c54
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy
numpy>=1.24.0
pvorca==0.1.4
sounddevice==0.4.6
tiktoken==0.6.0
12 changes: 9 additions & 3 deletions demo/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@

import setuptools


INCLUDE_FILES = ("../../LICENSE', 'orca_demo.py")
INCLUDE_FILES = [
"../../LICENSE",
"orca_demo.py",
"orca_demo_streaming.py",
"_audio_device.py",
"_orca_thread.py",
"_util.py",
"__init__.py"]

os.system("git clean -dfx")

Expand Down Expand Up @@ -32,7 +38,7 @@
long_description_content_type="text/markdown",
url="https://github.com/Picovoice/orca",
packages=["pvorcademo"],
install_requires=["numpy==1.22.0", "pvorca==0.1.4", "sounddevice==0.4.6"],
install_requires=["numpy>=1.24.0", "sounddevice==0.4.6", "tiktoken==0.6.0"],
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 5917c54

Please sign in to comment.