-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Picovoice/v2.0-python
v2.0 python
- Loading branch information
Showing
12 changed files
with
124 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
shutil.copytree( | ||
os.path.join(os.path.dirname(__file__), '../../lib', platform), | ||
os.path.join(package_folder, 'lib', platform)) | ||
manifest_in += "recursive-include pvkoala/lib/ *\n" | ||
manifest_in += "recursive-include pvkoala/lib *\n" | ||
|
||
with open(os.path.join(os.path.dirname(__file__), 'MANIFEST.in'), 'w') as f: | ||
f.write(manifest_in) | ||
|
@@ -42,7 +42,7 @@ | |
|
||
setuptools.setup( | ||
name="pvkoala", | ||
version="1.0.1", | ||
version="2.0.0", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Koala Noise Suppression Engine.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pvkoala==1.0.1 | ||
pvkoala==2.0.0 | ||
pvrecorder==1.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,15 +24,15 @@ | |
|
||
setuptools.setup( | ||
name="pvkoalademo", | ||
version="1.0.3", | ||
version="2.0.0", | ||
author="Picovoice", | ||
author_email="[email protected]", | ||
description="Koala Noise Suppression Engine demos", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Picovoice/koala", | ||
packages=["pvkoalademo"], | ||
install_requires=["pvkoala==1.0.1", "pvrecorder==1.2.1"], | ||
install_requires=["pvkoala==2.0.0", "pvrecorder==1.2.1"], | ||
include_package_data=True, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|