2024-09-15 00:39:25 +02:00
|
|
|
[project]
|
|
|
|
name = "torrent-downloader"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Add your description here"
|
|
|
|
authors = [
|
|
|
|
{ name = "Vladan Popovic", email = "vladanovic@gmail.com" }
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"tpblite>=0.8.0",
|
|
|
|
"transmission-rpc>=7.0.11",
|
|
|
|
"pydantic-settings>=2.4.0",
|
|
|
|
"fastapi>=0.114.2",
|
|
|
|
"jinja2>=3.1.4",
|
|
|
|
"cinemagoer>=2023.5.1",
|
|
|
|
]
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">= 3.8"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.rye]
|
|
|
|
managed = true
|
|
|
|
dev-dependencies = [
|
|
|
|
"uvicorn>=0.30.6",
|
2024-09-18 01:56:05 +02:00
|
|
|
"ipython",
|
2024-09-15 00:39:25 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/torrent_downloader"]
|
|
|
|
|
|
|
|
[tool.rye.scripts]
|
|
|
|
client = "python -m torrent_downloader"
|
|
|
|
server = "python -m torrent_downloader.server"
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
venv = ".venv"
|
|
|
|
venvPath = "."
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
line-length = 100
|
|
|
|
indent-width = 4
|
|
|
|
|
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "double"
|
|
|
|
indent-style = "space"
|
|
|
|
skip-magic-trailing-comma = false
|