-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (22 loc) · 758 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (22 loc) · 758 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tts-audiobook-tool"
version = "0.1.0"
description = "Audiobook creation tool"
# ####################################################################
# Dependencies should be handled using "pip install requirements*.txt"
dependencies = []
# ####################################################################
[project.optional-dependencies]
dev = [
"pytest"
]
[tool.setuptools.packages.find]
where = ["."] # Tells setuptools to look in the root for packages
[tool.setuptools.package-data]
tts_audiobook_tool = ["assets/*.flac", "assets/*.json", "assets/*.txt", "assets/*.wav"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = "."