Initial Commit

This commit is contained in:
Shravan Mandava
2025-12-31 00:34:06 +00:00
commit 0ad094125b
6 changed files with 675 additions and 0 deletions

18
pyproject.toml Normal file
View File

@@ -0,0 +1,18 @@
[project]
name = "musefetch"
version = "0.1.0"
description = "A simple music fetch tool based off of songfetch"
authors = [{ name = "Shravan Mandava", email = "shravan@mandava8.com" }]
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["term-image (>=0.7.2,<0.8.0)", "dbus-python (>=1.4.0,<2.0.0)"]
[dependency-groups]
dev = ["black (>=25.12.0,<26.0.0)"]
[project.scripts]
musefetch = "musefetch.__main__:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"