30 lines
676 B
TOML
30 lines
676 B
TOML
[tool.poetry]
|
|
name = "auberge-vagabonde"
|
|
version = "0.1.0"
|
|
description = "Convert The Wandering Inn Into Ebooks"
|
|
authors = ["Xéfir Destiny <xefir@crystalyx.net>"]
|
|
license = "WTFPL"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8.1"
|
|
beautifulsoup4 = "^4.12.2"
|
|
lxml = "^5.0.0"
|
|
pillow = "^10.0.0"
|
|
pypub3 = "^1.0.2"
|
|
requests = "^2.31.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.0.0"
|
|
flake8 = "^7.0.0"
|
|
flake8-alphabetize = "^0.0.21"
|
|
flake8-black = "^0.3.6"
|
|
mypy = "^1.5.0"
|
|
types-beautifulsoup4 = "^4.12.0.5"
|
|
types-lxml = "^2023.3.28"
|
|
types-pillow = "^10.0.0.2"
|
|
types-requests = "^2.31.0.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|