From 411c99b3bc86ec8d5317a770ccd921deaad788f7 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Fri, 1 Nov 2024 11:19:14 +0100 Subject: [PATCH] Added Poetry --- pyproject.toml | 16 ++++++++++++++++ requirements.txt | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..060ab19 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = "music-organizer" +version = "0.1.0" +description = "Project for recognize automatically and organize music folders" +authors = ["Fabio Scotto di Santolo "] +license = "GPLv3" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.13" +python-magic = "^0.4.27" +shazamio = "^0.7.0" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/requirements.txt b/requirements.txt index 2c444e0..c55cf8d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ python-magic~=0.4.27 -shazamio~=0.6.0 \ No newline at end of file +shazamio~=0.7.0 \ No newline at end of file