forked from platers/unitunes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.18 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
[tool.poetry]
name = "unitunes"
version = "1.0.1"
description = "A CLI tool to manage playlists across music streaming services."
authors = ["platers <[email protected]>"]
readme = "README.md"
license = "GPLv3"
homepage = "https://github.com/platers/unitunes"
keywords = ["cli", "music", "playlist", "playlists", "spotify", "ytmusic", "musicbrainz"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Utilities",
]
[tool.poetry.scripts]
unitunes = "unitunes.cli.cli:app"
# up-data= "unitunes.eval.data.create_dataset:main"
# up-eval = "unitunes.eval.eval:eval_app"
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.4.1"}
spotipy = "^2.19.0"
ytmusicapi = "^0.21.0"
musicbrainzngs = "^0.7.1"
pydantic = "^1.9.0"
strsimpy = "^0.2.1"
rich = "^12.2.0"
ratelimit = "^2.2.1"
youtube-title-parse = "^1.0.0"
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"