Files
uj-mastering-master/pyproject.toml
T

40 lines
811 B
TOML
Raw Normal View History

2026-05-28 14:05:34 +09:00
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "uj-mastering-master"
version = "0.1.0"
requires-python = ">=3.10"
dependencies = [
"librosa",
"numpy",
"matplotlib",
"mutagen",
"pyloudnorm",
2026-05-28 14:05:34 +09:00
"PyQt5>=5.15.10",
# 5.15.2 is the only pyqt5-qt5 release with a Windows wheel; later
# versions are Linux/macOS only.
"PyQt5-Qt5==5.15.2 ; sys_platform == 'win32'",
"pyqtgraph>=0.14.0",
2026-05-28 14:05:34 +09:00
]
[project.scripts]
ujm = "main:main"
[tool.setuptools]
py-modules = [
"main",
"analysis_results_manager",
"audio_visualization_widget",
"master_core",
"metrics",
"plotspec",
2026-05-28 14:05:34 +09:00
"font_manager",
"font_control_widget",
"plot_control_widget",
"ref_line_widget",
2026-05-28 14:05:34 +09:00
"logger_setup",
"setup_fonts",
]