-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
67 lines (58 loc) · 1.4 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
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "tonie-podcast-sync"
version = "3.0.0"
description = "allows synching podcast episodes to creative tonies"
authors = ["Alexander Hartmann <16985220+alexhartm@users.noreply.github.com>"]
repository = "https://github.com/alexhartm/tonie-podcast-sync"
readme = "README.md"
license = "MIT"
keywords = ["toniebox", "podcast"]
packages = [{ include = "tonie_podcast_sync" }]
[tool.poetry.dependencies]
python = "^3.10.11"
feedparser = "^6.0.10"
tonie-api = "^0.1.1"
rich = "^13.5.2"
pathvalidate = "^3.2.0"
pydub = "^0.25.1"
python-slugify = "^8.0.1"
dynaconf = "^3.2.3"
typer = { extras = ["all"], version = "^0.9.0" }
tomli-w = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-mock = "^3.11.1"
ruff = "^0.1.13"
black = "^23.12.1"
pre-commit = "^3.6.0"
responses = "^0.23.3"
[tool.poetry.scripts]
tonie-podcast-sync = "tonie_podcast_sync.cli:app"
[tool.ruff]
# Add "Q" to the list of enabled codes.
select = ["ALL"]
ignore = ["ANN101", "D105", "N999"]
line-length = 120
target-version = "py310"
[tool.ruff.pydocstyle]
convention = "google"
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.per-file-ignores]
"tests/*.py" = [
"D",
"A",
"ANN",
"S",
"SLF",
"PLR2004",
"ARG002",
"INP001",
"FLY",
]
[tool.black]
line-length = 120
target-version = ["py310"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"