mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-09-12 08:04:35 +08:00
# Breaking Change - `requirements.txt` is now replaced with `pyproject.toml` meaning that **local installs** will need to replace their update command `pip install -r requirements.txt` with `pip install .` - Those that are running qbit-manage in docker don't need to do anything and things will continue to work as is # Requirements Updated qbittorrent-api==2025.5.0 humanize==4.12.3 # New Updates - Added user defined stalled_tag. Configurable through config.yml. (Closes #802 Thanks to @Patchy3767) ## Bug Fixes - Fixed max_seeding time of 0 for share_limits (Fixes #790 Thanks to @glau-bd) - Fixed Upload Limit not reset when LastActive/MinSeedsNotMet (Fixes #804) - Fixed Share limits not showing in logs when 0 torrents are in the group(Fixes #789) - Fixes bug where it tries to remove root_dir when not using category (Fixes #777) **Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.2.2...v4.3.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Actionbot <actions@github.com> Co-authored-by: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Gerald Lau <glau@bitdefender.com> Co-authored-by: Patchy3767 <birabinowitz+github@gmail.com>
50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
import os
|
|
|
|
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
# Read version from VERSION file
|
|
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "VERSION")) as f:
|
|
version_str = f.read().strip()
|
|
# Get only the first part (without develop suffix)
|
|
version = version_str.rsplit("-", 1)[0]
|
|
|
|
# User-friendly description from README.md
|
|
current_directory = os.path.dirname(os.path.abspath(__file__))
|
|
try:
|
|
with open(os.path.join(current_directory, "README.md"), encoding="utf-8") as f:
|
|
long_description = f.read()
|
|
except Exception:
|
|
long_description = ""
|
|
|
|
setup(
|
|
# Name of the package
|
|
name="qbit_manage",
|
|
# Packages to include into the distribution
|
|
packages=find_packages("."),
|
|
package_data={"": ["../*"]},
|
|
include_package_data=True,
|
|
# Start with a small number and increase it with
|
|
# every change you make https://semver.org
|
|
version=version,
|
|
# Chose a license from here: https: //
|
|
# help.github.com / articles / licensing - a -
|
|
# repository. For example: MIT
|
|
license="MIT",
|
|
# Short description of your library
|
|
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."
|
|
),
|
|
# Long description of your library
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
# Your name
|
|
author="bobokun",
|
|
# Your email
|
|
author_email="",
|
|
# Either the link to your github or to your website
|
|
url="https://github.com/StuffAnThings",
|
|
# Link from which the project can be downloaded
|
|
download_url="https://github.com/StuffAnThings/qbit_manage",
|
|
)
|