-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·57 lines (51 loc) · 1.36 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
[project]
version = "0.1.9"
authors = [
{name = "Anonymous", email = "[email protected]"},
]
license = {text = "MIT"}
requires-python = "<3.14,>=3.10"
dependencies = [
"ffmpy<1.0.0,>=0.4.0",
"music-tag<1.0.0,>=0.4.3",
"pillow<11.0.0,>=10.4.0",
"protobuf==3.*",
"tqdm<5.0.0,>=4.66.4",
"tonie-api<1.0.0,>=0.1.1",
"click<9.0.0,>=8.1.7",
"spotdl<5.0.0,>=4.2.10",
]
name = "tonie_sync"
description = "A package to sync Spotify playlists to creative tonies."
readme = "README.md"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://github.com/sHooPmyWooP/tonie-sync"
[dependency-groups]
dev = [
"ruff<1.0.0,>=0.1.11",
"mypy<2.0.0,>=1.8.0",
"pytest<8.0.0,>=7.4.4",
"types-requests<3.0.0.0,>=2.32.0.20240712",
]
[tool.ruff]
exclude = ["notebooks"]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
exclude = ["D212"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B"]
ignore = ["E501", "D100", "D104", "D105", "D107", "D203", "D213"]
extend-select = [
"UP", # pyupgrade
"D", # pydocstyle
]