-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "quickcall-voiceover"
version = "0.2.0"
description = "Utility tool for creating voice-over audio assets for QuickCall videos"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{ name = "Sagar Sarkale", email = "hello@quickcall.dev" }
]
keywords = ["voiceover", "tts", "piper", "kokoro", "audio", "quickcall"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"rich>=14.2.0",
]
[project.optional-dependencies]
piper = [
"piper-tts>=1.3.0",
]
kokoro = [
"kokoro>=0.9.4",
"soundfile>=0.12.0",
]
all = [
"piper-tts>=1.3.0",
"kokoro>=0.9.4",
"soundfile>=0.12.0",
]
[project.urls]
Homepage = "https://github.com/quickcall-dev/quickcall-voiceover"
Repository = "https://github.com/quickcall-dev/quickcall-voiceover"
Issues = "https://github.com/quickcall-dev/quickcall-voiceover/issues"
[project.scripts]
quickcall-voiceover = "quickcall_voiceover.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["quickcall_voiceover"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"ruff>=0.14.10",
]