Skip to content

Commit

Permalink
FIXED: ModuleNotFoundError: No module named 'ttsmodel' and ADDED: d…
Browse files Browse the repository at this point in the history
…ependencies in Poetry
  • Loading branch information
Reqeique committed Mar 1, 2024
1 parent b1487b6 commit 7f60623
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions dimits/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
__author__ = "Reqeique"


import ttsmodel
from . import main, ttsmodel,utils


from dimits.ttsmodel import TextToSpeechModel, TTSConfig
from .utils import untar, download, logger
from .main import Dimits


Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
[tool.poetry]
name = "dimits"
version = "0.0.21-alpha"
version = "0.0.22-beta"
description = "Dimits is a Python library that provides an easy-to-use interface to the Piper text-to-speech (TTS) system. It utilizes the powerful Piper TTS engine, which is optimized for Raspberry Pi 4, to generate high-quality synthesized speech."
authors = ["Reqeique <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{include = "Dimits"}]


[tool.poetry.dependencies]
python = "^3.9"
requests = { version = "^2.13.0", source = "private" }
espeak-phonemizer = { version = "*"}
espeak-phonemizer-windows = { version = "*", platform = "win32" }
tqdm = "4.64.0"
onnxruntime = { version = "*"}
soundfile = { version = "*"}

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 7f60623

Please sign in to comment.