22 lines
549 B
TOML
22 lines
549 B
TOML
[build-system]
|
|
requires = ["setuptools>=77"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "music-curator"
|
|
version = "0.5.1"
|
|
description = "Ingest a Last.fm listening history and curate a music library from it"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
# No runtime Python dependencies: urllib, sqlite3 and json cover all of it.
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
music-curator = "music_curator:run"
|
|
|
|
[project.urls]
|
|
Homepage = "https://code.emmathe.dev/lyrathorpe/music-curator"
|
|
|
|
[tool.setuptools]
|
|
py-modules = ["music_curator"]
|