mirror of
https://gh.wpcy.net/https://github.com/bohdanbobrowski/blog2epub.git
synced 2026-04-25 17:48:27 +08:00
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "blog2epub"
|
|
version = "1.3.0"
|
|
description = "Convert blog (blogspot.com, wordpress.com or another based on Wordpress) to epub using CLI or GUI."
|
|
authors = ["Bohdan Bobrowski <bohdanbobrowski@gmail.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10, <3.13"
|
|
pydantic = "^2.8.2"
|
|
beautifulsoup4 = "^4.12.3"
|
|
ebooklib = "^0.18"
|
|
python-dateutil = "^2.9.0.post0"
|
|
atoma = "^0.0.17"
|
|
fake-useragent = "^1.5.1"
|
|
pyyaml = "^6.0.1"
|
|
pycairo = "^1.26.1"
|
|
kivy = "^2.3.0"
|
|
kivymd = "^1.2.0"
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
mkdocs = "^1.6.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
ruff = "^0.5.0"
|
|
pyinstaller = "^6.8.0"
|
|
pylint = "^3.2.5"
|
|
mypy = "^1.10.1"
|
|
|
|
[tool.poetry.scripts]
|
|
blog2epub = "blog2epub.blog2epub_cli:main"
|
|
blog2epubgui = "blog2epub.blog2epub_gui:main"
|
|
build_gui_windows = "blog2epub_build:build_gui_windows"
|
|
build_gui_macos = "blog2epub_build:build_gui_macos"
|
|
|
|
[tool.ruff.lint.extend-per-file-ignores]
|
|
"blog2epub_gui.py" = ["E402"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|