dl/pyproject.toml

28 lines
509 B
TOML
Raw Normal View History

2023-06-09 16:30:06 +00:00
[tool.poetry]
name = "dl"
version = "0.0.0"
2023-06-09 16:30:06 +00:00
description = ""
authors = ["Michel Roux <xefir@crystalyx.net>"]
package-mode = false
2023-06-09 16:30:06 +00:00
[tool.poetry.dependencies]
2024-12-05 06:40:14 +00:00
python = "^3.13.1"
transmissionrpc-ng = "~0.13.1"
requests = "^2.32.3"
yt-dlp = "^2024.11.27"
2023-06-09 16:30:06 +00:00
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.1"
mypy = "^1.13.0"
types-requests = "^2.32.0"
2023-10-01 16:18:46 +00:00
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
2023-06-09 16:30:06 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"