22 lines
385 B
TOML
22 lines
385 B
TOML
[build-system]
|
|
requires = ["setuptools>=40.9.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cue_to_meta"
|
|
version = "0.1.0"
|
|
description = "convert cue sheet to aNONradio metadata"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"click>=8.4.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
cue_to_meta = "cue_to_meta:cli"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.3",
|
|
]
|