20 lines
398 B
TOML
20 lines
398 B
TOML
|
[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"
|