qbt-helper/pyproject.toml

27 lines
858 B
TOML
Raw Normal View History

2024-12-22 04:01:28 +01:00
[project]
name = "qbt-helper"
version = "0.2"
authors = [
{ name="Jeffrey Serio", email="hyperreal@fedoraproject.org" },
]
description = "Helper program for adding torrents from URLs to a qBittorrent instance."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = ["beautifulsoup4>=4.12.3", "docopt>=0.6.2", "qbittorrent-api>=2024.12.71", "requests>=2.32.3", "rich>=13.9.4"]
[project.scripts]
qbt-helper = "qbt_helper:main"
[project.urls]
Homepage = "https://codeberg.org/hyperreal/qbt-helper"
Issues = "https://codeberg.org/hyperreal/qbt-helper/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"