mirror of
https://github.com/kemayo/leech
synced 2026-05-07 20:13:34 +02:00
Bumps [pillow](https://github.com/python-pillow/Pillow) from 12.1.1 to 12.2.0. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/12.1.1...12.2.0) --- updated-dependencies: - dependency-name: pillow dependency-version: 12.2.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
853 B
TOML
42 lines
853 B
TOML
[project]
|
|
authors = [
|
|
{name = "David Lynch", email = "kemayo@gmail.com"},
|
|
]
|
|
license = {text = "MIT"}
|
|
requires-python = "<4.0,>=3.10"
|
|
dependencies = [
|
|
"attrs<26.0.0,>=25.1.0",
|
|
"beautifulsoup4<5.0.0,>=4.13.3",
|
|
"click-default-group<2.0.0,>=1.2.4",
|
|
"click<9.0.0,>=8.1.8",
|
|
"requests<3.0.0,>=2.32.4",
|
|
"requests-cache<2.0.0,>=1.2.1",
|
|
"pillow>=12.2.0,<13.0.0",
|
|
"mintotp<1.0.0,>=0.3.0",
|
|
"lxml<6.0.0,>=5.3.1",
|
|
"platformdirs>=4.9.4",
|
|
]
|
|
name = "leech"
|
|
version = "1.0.0"
|
|
description = "Turn a story on certain websites into an ebook for convenient reading"
|
|
|
|
[project.scripts]
|
|
leech = "leech:cli"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.15.5",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
extend-ignore = ["E501"]
|
|
|
|
[tool.pdm.build]
|
|
includes = [
|
|
"ebook",
|
|
"sites",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|