From 487231299648a38c6feb0cc2d9c0a5f129d3a59f Mon Sep 17 00:00:00 2001 From: Yuta Hayashibe Date: Mon, 26 Sep 2022 00:42:02 +0900 Subject: [PATCH] Fix CI --- README.md | 1 - pyproject.toml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7db458c..06b7c17 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ [![Typos](https://github.com/shirayu/whispering/actions/workflows/typos.yml/badge.svg)](https://github.com/shirayu/whispering/actions/workflows/typos.yml) Streaming transcriber with [whisper](https://github.com/openai/whisper). -Former name was "whisper_streaming". Enough machine power is needed to transcribe in real time. ## Setup diff --git a/pyproject.toml b/pyproject.toml index 3767ff2..94ea027 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "" authors = ["Yuta Hayashibe "] readme = "README.md" -packages = [{include = "whisper_streaming"}] +packages = [{include = "whispering"}] [tool.poetry.dependencies] python = ">=3.8,<3.11" @@ -25,5 +25,5 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] -whispering = "whisper_streaming.cli:main" +whispering = "whispering.cli:main"