* chanbans.config handles all configuration now * python-dotenv dependency is added for basic environment-level configuration Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
26 lines
528 B
TOML
26 lines
528 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"
|
|
aiohttp = "^3.8.4"
|
|
jinja2 = "^3.1.2"
|
|
python-dotenv = "^1.0.0"
|
|
|
|
|
|
[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"
|