itch-dl/pyproject.toml
Ryszard Knop b476c54b2d Stop locking urllib3 1.x for ye olde Pythons
Requests wants a compatible urllib3 version, let it use 2.x.
2025-02-14 15:51:08 +01:00

55 lines
1.3 KiB
TOML

[project]
name = "itch-dl"
dynamic = ["version"]
description = "itch.io bulk game downloader"
authors = [{ name = "Dragoon Aethis", email = "dragoon@dragonic.eu" }]
requires-python = "~=3.10"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: System :: Archiving :: Backup",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"tqdm>=4.67.1,<5",
"urllib3>=2.3.0,<3",
"requests>=2.32.3,<3",
"beautifulsoup4>=4.13.3,<5",
"lxml>=5.3.1,<6",
]
[project.urls]
GitHub = "https://github.com/DragoonAethis/itch-dl"
Wiki = "https://github.com/DragoonAethis/itch-dl/wiki"
Issues = "https://github.com/DragoonAethis/itch-dl/issues"
Donate = "https://ko-fi.com/dragoonaethis"
[project.scripts]
itch-dl = "itch_dl.cli:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "itch_dl/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["itch_dl"]
[tool.hatch.build.targets.wheel]
include = ["itch_dl"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
# https://docs.astral.sh/ruff/rules/
select = ["F", "E", "N", "UP", "ANN", "S", "B", "A", "COM", "C4", "T10", "ISC", "LOG", "Q", "SIM", "TC", "ARG", "PGH", "PLE", "PLW", "RUF", "G"]
ignore = ["COM812"]