-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "interactive-reader"
version = "1.0.0"
description = "A local Kokoro-82M TTS tool that generates self-contained HTML text readers with real-time word highlighting and click-to-seek audio navigation."
readme = "README.md"
requires-python = ">=3.10, <3.13"
authors = [{ name = "Open Source Contributor" }]
license = { text = "MIT" }
keywords = ["tts", "kokoro", "text-to-speech", "audiobook", "interactive-reader", "word-highlighting"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"kokoro>=0.9.4",
"misaki[en]>=0.9.4",
"soundfile>=0.14.0",
"numpy>=2.0.0",
"torch>=2.0.0",
]
[project.optional-dependencies]
window = [
"pywebview>=4.0",
]
dev = [
"pytest>=7.0",
]
[project.scripts]
ireader = "interactive_reader.cli:main"
interactive-reader = "interactive_reader.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
interactive_reader = ["templates/*.html"]
[project.urls]
Homepage = "https://github.com/OblivCode/interactive-reader"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]