Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[binding] rename py to wenetruntime, which is our final module #1968

Merged
merged 1 commit into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions runtime/binding/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="binbzha@qq.com",
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",
Expand Down
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()
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import _wenet

from .hub import Hub
from wenetruntime.hub import Hub


class Decoder:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import argparse

from .decoder import Decoder
from wenetruntime.decoder import Decoder


def get_args():
Expand Down
Loading