Skip to content

Commit

Permalink
[binding] rename py to wenetruntime, which is our final module (#1968)
Browse files Browse the repository at this point in the history
  • Loading branch information
robin1001 authored Aug 25, 2023
1 parent 204ab02 commit c39f20b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
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="[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",
Expand Down
File renamed without changes.
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
File renamed without changes.
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

0 comments on commit c39f20b

Please sign in to comment.