-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.03 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
[project]
name = "tuney"
version = "0.2.1"
description = "🎶 Turn text into music (#noAI) 🎶"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"customtkinter>=5.2.2",
"mido>=1.3.3",
"numpy>=2.4.1",
"pynput>=1.8.1",
"sounddevice>=0.5.3",
"soundfile>=0.13.1",
"ty>=0.0.13",
"typer>=0.20.1",
]
classifiers = ["Programming Language :: Python :: 3", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14"]
[dependency-groups]
dev = [
"coverage>=7.13.2",
"pytest>=9.0.2",
"pyupgrade>=3.21.2",
"ruff>=0.14.10",
"ty>=0.0.8",
]
[tool.uv]
package = true
[tool.coverage]
[tool.coverage.run]
branch = true
[tool.coverage.report]
skip_covered = true
exclude_lines = ["pragma: no cover", "if False:", "if __name__ == .__main__.:", "raise NotImplementedError"]
[tool.ruff.format]
quote-style = "single"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
tuney = "tuney.__main__:main"