-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
41 lines (37 loc) · 1.07 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
[tool.poetry]
name = "unitunes"
version = "2.0.1"
description = "A GUI and library to manage playlists across music streaming services."
authors = ["platers <[email protected]>"]
readme = "README.md"
license = "GPLv3"
homepage = "https://github.com/platers/unitunes"
keywords = ["gui", "music", "playlist", "playlists", "spotify", "ytmusic", "musicbrainz"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Utilities",
]
[tool.poetry.scripts]
unitunes = "unitunes.gui.main:main"
[tool.poetry.dependencies]
python = "^3.9"
spotipy = "^2.19.0"
ytmusicapi = "^0.21.0"
musicbrainzngs = "^0.7.1"
pydantic = "^1.9.0"
strsimpy = "^0.2.1"
ratelimit = "^2.2.1"
youtube-title-parse = "^1.0.0"
tqdm = "^4.64.0"
dearpygui = "^1.6.2"
appdirs = "^1.4.4"
platformdirs = "^2.5.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"