mirror of
https://github.com/kemayo/leech
synced 2025-12-27 10:51:04 +01:00
Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.1.0 to 9.0.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/8.1.0...9.0.0) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
628 B
TOML
28 lines
628 B
TOML
[tool.poetry]
|
|
name = "leech"
|
|
version = "1.0.0"
|
|
description = "Turn a story on certain websites into an ebook for convenient reading"
|
|
authors = ["David Lynch <kemayo@gmail.com>"]
|
|
license = "MIT License"
|
|
include = ["ebook/*", "sites/*"]
|
|
|
|
[tool.poetry.scripts]
|
|
leech = "leech:cli"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
attrs = "^20.2.0"
|
|
beautifulsoup4 = "^4.9.3"
|
|
click-default-group = "^1.2.2"
|
|
click = "^7.1.2"
|
|
html5lib = "^1.1"
|
|
requests = "^2.24.0"
|
|
requests-cache = "^0.5.2"
|
|
Pillow = "^9.0.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
flake8 = "^3.8.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|