forked from OzymandiasTheGreat/mopidy-ytmusic
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
44 lines (37 loc) · 1.06 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
[tool.black]
target-version = ["py37", "py38"]
line-length = 80
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_tests = "tests"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,TESTS,LOCALFOLDER"
[tool.poetry]
name = "Mopidy-YTMusic"
version = "0.3.8"
description = "Mopidy extension for playling music/managing playlists in Youtube Music"
authors = ["Ozymandias (Tomas Ravinskas) <[email protected]>"]
license = "Apache-2.0"
[tool.poetry.dependencies]
python = "^3.7"
Mopidy = "^3"
pytube = "^12.1.0"
ytmusicapi = ">=0.22.0, <0.30.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
setuptools = "^51.0.0"
Sphinx = "^3.3.1"
poetry2setup = "^1.0.0"
isort = "^5"
black = { version = "*", allow-prereleases = true }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."mopidy.ext"]
ytmusic = "mopidy_ytmusic:Extension"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}