This repository has been archived on 2024-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Auberge_Vagabonde/pyproject.toml

30 lines
651 B
TOML
Raw Normal View History

2023-01-11 12:35:37 +00:00
[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"
2023-02-10 09:26:04 +00:00
beautifulsoup4 = "^4.11.2"
2023-01-12 18:43:45 +00:00
lxml = "^4.9.2"
2023-01-11 12:35:37 +00:00
pillow = "^9.4.0"
pypub3 = "^1.0.2"
2023-01-12 18:43:45 +00:00
requests = "^2.28.2"
2023-01-11 12:35:37 +00:00
[tool.poetry.group.dev.dependencies]
2023-02-10 09:26:04 +00:00
black = "^23.1.0"
2023-01-11 12:35:37 +00:00
flake8 = "^6.0.0"
flake8-alphabetize = "^0.0.19"
flake8-black = "^0.3.6"
2023-02-07 00:23:59 +00:00
mypy = "^1.0"
2023-01-11 12:35:37 +00:00
types-beautifulsoup4 = "^4.11.6.2"
2023-02-12 00:10:55 +00:00
types-lxml = "^2023.0.0"
2023-02-10 09:26:04 +00:00
types-pillow = "^9.4.0.10"
types-requests = "^2.28.11.12"
2023-01-11 12:35:37 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"