-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
37 lines (28 loc) · 999 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "narizaka"
authors = [
{name = "Serhiy Stetskovych", email = "[email protected]"},
]
description = "Tool to make high quality text to speech (tts) corpus from audio + text books."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["tts", "text-to-speech", "audio corpus"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
include-package-data = false
packages = ["narizaka", "narizaka.asr_backends", "narizaka.languages", "narizaka.languages.uk", "narizaka.languages.uk.num2words"]
[project.scripts]
narizaka = "narizaka.narizaka:run"
[project.urls]
"Homepage" = "https://github.com/patriotyk/narizaka"
"Bug Tracker" = "https://github.com/patriotyk/narizaka/issues"