29 lines
561 B
TOML
29 lines
561 B
TOML
[tool.poetry]
|
|
name = "auberge_vagabonde"
|
|
version = "0.0.0"
|
|
description = "Convert The Wandering Inn Into Ebooks"
|
|
authors = ["Xéfir Destiny <xefir@crystalyx.net>"]
|
|
license = "WTFPL"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
beautifulsoup4 = "^4.13.3"
|
|
curl_cffi = "^0.9.0"
|
|
pillow = "^11.1.0"
|
|
pypub3 = "^2.0.7"
|
|
pyxml3 = "^0.0.4"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
mypy = "^1.15.0"
|
|
ruff = "^0.9.9"
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "UP"]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|