forked from sigma67/spotify_to_ytmusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (52 loc) · 1.48 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "spotify_to_ytmusic"
description = "Transfer Spotify playlists to YouTube Music"
requires-python = ">=3.8"
authors=[{name = "sigma67", email= "[email protected]"}]
license={file="LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"ytmusicapi>=1.7.3",
"spotipy>=2.23.0",
"platformdirs>=3.2",
]
dynamic = ["version", "readme"]
[project.scripts]
spotify_to_ytmusic = "spotify_to_ytmusic.main:main"
[project.urls]
homepage = "https://github.com/sigma67/spotify_to_ytmusic"
repository = "https://github.com/sigma67/spotify_to_ytmusic"
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
[tool.setuptools]
include-package-data=false
[tool.setuptools.package-data]
"*" = ["**.example", "**.py"]
[tool.isort]
profile = "hug"
src_paths = ["spotify_to_ytmusic"]
[tool.black]
src_paths = ["spotify_to_ytmusic"]
line-length = 99
[tool.coverage.run]
command_line = "-m unittest discover tests"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"black>=24.4.2",
"isort>=5.13.2",
"coverage>=7.5.3",
]