-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.17 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
[project]
name = "ytm2spt"
version = "1.1.0"
authors = [
{ name="Abhishek M J", email="[email protected]" },
]
description = "Transfer Playlists from YouTube Music to Spotify"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
"Topic :: Internet",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
]
dependencies = [
"pyside6>=6.8.0",
"spotipy>=2.24.0",
"thefuzz>=0.22.1",
"ytmusicapi==1.8.2",
]
[tool.uv]
dev-dependencies = [
"nuitka>=2.4.8",
]
[project.scripts]
ytm2spt = "ytm2spt:main"
ytmusicapi-oauth = "ytm2spt.cli:oauth"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://github.com/abhishekmj303/ytm2spt"
Issues = "https://github.com/abhishekmj303/ytm2spt/issues"