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

34 lines
728 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"
2023-08-11 19:38:18 +00:00
authors = ["Xéfir Destiny <xefir@crystalyx.net>"]
2023-01-11 12:35:37 +00:00
license = "WTFPL"
[tool.poetry.dependencies]
2023-02-28 14:41:24 +00:00
python = "^3.8.1"
2024-01-26 11:57:45 +00:00
beautifulsoup4 = "^4.12.3"
lxml = "^5.1.0"
pillow = "^10.2.0"
2023-01-11 12:35:37 +00:00
pypub3 = "^1.0.2"
2023-06-26 08:00:24 +00:00
requests = "^2.31.0"
2023-01-11 12:35:37 +00:00
[tool.poetry.group.dev.dependencies]
2024-01-26 11:57:45 +00:00
black = "^24.1.0"
2024-01-05 06:37:55 +00:00
flake8 = "^7.0.0"
flake8-alphabetize = "^0.0.21"
2023-01-11 12:35:37 +00:00
flake8-black = "^0.3.6"
2024-01-26 11:57:45 +00:00
flake8-pyproject = "^1.2.3"
mypy = "^1.8.0"
types-beautifulsoup4 = "^4.12"
types-lxml = "^2024.0.0"
2024-01-26 11:57:45 +00:00
types-pillow = "^10.2"
types-requests = "^2.31"
[tool.flake8]
max-line-length = 100
2023-01-11 12:35:37 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"