1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-04-06 22:30:33 +02:00
commit 27ba70d9da
No known key found for this signature in database
16 changed files with 1510 additions and 0 deletions

18
pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "musicomp"
version = "0.1.0"
description = "Music compression tool"
authors = [{ name = "Lukas Wurzinger", email = "lukas@wrz.one" }]
readme = "README.md"
requires-python = ">=3.12"
license = "GPL-3.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
musicomp = "musicomp.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/musicomp"]