initial commit

This commit is contained in:
2025-07-20 20:17:02 +02:00
commit 62166624dc
9 changed files with 2272 additions and 0 deletions

29
pyproject.toml Normal file
View File

@ -0,0 +1,29 @@
[project]
name = "hipsterfy"
version = "0.1.0"
description = ""
authors = [
{name="Jonas Weinz"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"spotipy",
"pandas",
"pillow",
"qrcode",
"panel",
]
[tool.poetry]
name = "hipsterfy"
version = "0.1.0"
description = ""
authors = [
"Jonas Weinz"
]
readme = "README.md"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"