Files
chanbans/pyproject.toml
Alek Ratzloff c5e7080663 http: Add base HTTP server implementation.
* Add HTTP server base implementation with some basic pages
* Add Jinja2 dependency
* Things are mostly working, except for static resources. Those will
  have to come next.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2023-07-31 18:04:53 -07:00

25 lines
503 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"
[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"