mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-11-10 16:30:54 +08:00
Bumps [humanize](https://github.com/python-humanize/humanize) from 4.12.3 to 4.13.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-humanize/humanize/releases">humanize's releases</a>.</em></p> <blockquote> <h2>4.13.0</h2> <h2>Changed</h2> <ul> <li>Optimise <code>naturalsize</code> algorithm by using <code>math.log</code> (<a href="https://redirect.github.com/python-humanize/humanize/issues/253">#253</a>) <a href="https://github.com/Zaczero"><code>@Zaczero</code></a></li> </ul> <h2>Fixed</h2> <ul> <li>Fix <code>precisedelta</code> rounding (<a href="https://redirect.github.com/python-humanize/humanize/issues/254">#254</a>) <a href="https://github.com/dangillet"><code>@dangillet</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="0e02705103"><code>0e02705</code></a> Update config (<a href="https://redirect.github.com/python-humanize/humanize/issues/262">#262</a>)</li> <li><a href="288a7a7c1d"><code>288a7a7</code></a> Test free-threaded Python 3.13t and 3.14t (<a href="https://redirect.github.com/python-humanize/humanize/issues/261">#261</a>)</li> <li><a href="0f5d2948d6"><code>0f5d294</code></a> Precisedelta rounding (<a href="https://redirect.github.com/python-humanize/humanize/issues/254">#254</a>)</li> <li><a href="58d10b4317"><code>58d10b4</code></a> Update docs/requirements.txt (<a href="https://redirect.github.com/python-humanize/humanize/issues/260">#260</a>)</li> <li><a href="18105e31d4"><code>18105e3</code></a> Update dependency mypy to v1.17.1 (<a href="https://redirect.github.com/python-humanize/humanize/issues/259">#259</a>)</li> <li><a href="122726447c"><code>1227264</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/python-humanize/humanize/issues/258">#258</a>)</li> <li><a href="3f29964b23"><code>3f29964</code></a> Update dependency pymdown-extensions to v10.16 (<a href="https://redirect.github.com/python-humanize/humanize/issues/257">#257</a>)</li> <li><a href="96ff3a7310"><code>96ff3a7</code></a> Update dependency mypy to v1.16.1 (<a href="https://redirect.github.com/python-humanize/humanize/issues/256">#256</a>)</li> <li><a href="cf0e75b2e5"><code>cf0e75b</code></a> Update dependency mypy to v1.16.0 (<a href="https://redirect.github.com/python-humanize/humanize/issues/255">#255</a>)</li> <li><a href="bb99238e6f"><code>bb99238</code></a> Optimize <code>naturalsize</code> algorithm by using <code>math.log</code> (<a href="https://redirect.github.com/python-humanize/humanize/issues/253">#253</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python-humanize/humanize/compare/4.12.3...4.13.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
# Keep using setup.py for version handling
|
|
# Dependencies are specified here for uv to use
|
|
|
|
[project]
|
|
name = "qbit_manage"
|
|
# Version is dynamically determined from setup.py
|
|
dynamic = ["version"]
|
|
description = "This tool will help manage tedious tasks in qBittorrent and automate them. Tag, categorize, remove Orphaned data, remove unregistered torrents and much much more."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = "MIT"
|
|
authors = [
|
|
{name = "bobokun"},
|
|
]
|
|
dependencies = [
|
|
"bencodepy==0.9.5",
|
|
"croniter==6.0.0",
|
|
"fastapi==0.116.1",
|
|
"GitPython==3.1.45",
|
|
"humanize==4.13.0",
|
|
"pytimeparse2==1.7.1",
|
|
"qbittorrent-api==2025.7.0",
|
|
"requests==2.32.5",
|
|
"retrying==1.4.2",
|
|
"ruamel.yaml==0.18.15",
|
|
"uvicorn==0.35.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
qbit-manage = "qbit_manage:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/StuffAnThings"
|
|
Repository = "https://github.com/StuffAnThings/qbit_manage"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pre-commit==4.3.0",
|
|
"ruff==0.12.10",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 130
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"I", # isort - import order
|
|
"UP", # pyupgrade
|
|
"T10", # debugger
|
|
"E", # pycodestyle errors
|
|
"W", # pycodestyle warnings
|
|
"F", # pyflakes
|
|
]
|
|
|
|
ignore = [
|
|
"E722", # E722 Do not use bare except, specify exception instead
|
|
"E402", # E402 module level import not at top of file
|
|
]
|
|
|
|
[tool.ruff.lint.isort]
|
|
force-single-line = true
|
|
|
|
[tool.ruff.format]
|
|
line-ending = "auto"
|