-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[binding] rename py to wenetruntime, which is our final module (#1968)
- Loading branch information
Showing
6 changed files
with
6 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,17 +62,12 @@ def read_long_description(): | |
return readme | ||
|
||
|
||
package_name = "wenetruntime" | ||
|
||
setuptools.setup( | ||
name=package_name, | ||
version='1.0.12', | ||
name="wenetruntime", | ||
version='1.0.13', | ||
author="Binbin Zhang", | ||
author_email="[email protected]", | ||
package_dir={ | ||
package_name: "py", | ||
}, | ||
packages=[package_name], | ||
packages=setuptools.find_packages(), | ||
url="https://github.com/wenet-e2e/wenet", | ||
long_description=read_long_description(), | ||
long_description_content_type="text/markdown", | ||
|
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
runtime/binding/python/py/__main__.py → ...e/binding/python/wenetruntime/__main__.py
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,4 +1,4 @@ | ||
from .main import main | ||
from wenetruntime.main import main | ||
|
||
if __name__ == "__main__": | ||
main() |
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
import _wenet | ||
|
||
from .hub import Hub | ||
from wenetruntime.hub import Hub | ||
|
||
|
||
class Decoder: | ||
|
File renamed without changes.
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