Files
chanbans/pyproject.toml
Alek Ratzloff 99624c17a5 Add pylint and bs4-types
* pylint for helping to clean up simple issues
* bs4-types for beautifulsoup4 mypy types

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2023-06-20 23:21:58 -07:00

24 lines
484 B
TOML

[tool.poetry]
name = "chanbans"
version = "0.1.0"
description = "4chan Ban Archiver"
authors = ["Hidden Service <hiddenservice@airmail.cc>"]
license = "AGPL 3.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "^4.12.2"
httpx = "^0.24.1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
mypy = "^1.4.0"
types-beautifulsoup4 = "^4.12.0.5"
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"