29 lines
637 B
TOML
29 lines
637 B
TOML
|
[tool.poetry]
|
||
|
name = "auberge-vagabonde"
|
||
|
version = "0.1.0"
|
||
|
description = "Convert The Wandering Inn Into Ebooks"
|
||
|
authors = ["Xéfir Destiny"]
|
||
|
license = "WTFPL"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.10"
|
||
|
beautifulsoup4 = "^4.11.1"
|
||
|
pillow = "^9.4.0"
|
||
|
pypub3 = "^1.0.2"
|
||
|
requests = "^2.28.1"
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
black = "^22.12.0"
|
||
|
flake8 = "^6.0.0"
|
||
|
flake8-alphabetize = "^0.0.19"
|
||
|
flake8-black = "^0.3.6"
|
||
|
mypy = "^0.991"
|
||
|
types-beautifulsoup4 = "^4.11.6.2"
|
||
|
types-lxml = "^2022.11.8"
|
||
|
types-pillow = "^9.4.0.0"
|
||
|
types-requests = "^2.28.11.7"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|