Files
spotify-to-tidal/pyproject.toml
2024-06-10 19:29:13 +02:00

25 lines
497 B
TOML

[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spotify_to_tidal"
version = "0.1.4"
requires-python = ">= 3.10"
dependencies = [
"spotipy~=2.21.0",
"tidalapi==0.7.6",
"pyyaml~=6.0",
"tqdm~=4.64",
"sqlalchemy~=2.0",
"pytest~=7.0",
"pytest-mock~=3.8"
]
[tools.setuptools.packages."spotify_to_tidal"]
where = "src"
include = "spotify_to_tidal*"
[project.scripts]
spotify_to_tidal = "spotify_to_tidal.__main__:main"