This commit is contained in:
publicmatt
2025-01-20 12:00:18 -08:00
commit 404deff6e4
8 changed files with 278 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "music"
version = "0.1.0"
description = "music utilies"
readme = "README.md"
authors = [{ name = "publicmatt", email = "git@publicmatt.com" }]
requires-python = ">=3.13"
dependencies = [
"click>=8.1.8",
"joblib>=1.4.2",
"python-dotenv>=1.0.1",
]
[project.scripts]
music = "music.__main__:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"