31 lines
668 B
TOML
Raw Normal View History

2025-01-17 22:06:17 +00:00
[build-system]
requires = ["setuptools", "wheel"]
2025-01-24 02:28:43 +00:00
build-backend = "setuptools.build_meta"
[project]
name = "Snek"
version = "1.0.0"
readme = "README.md"
license = { file = "LICENSE", content-type="text/markdown" }
description = "Snek Chat Application by Molodetz"
authors = [
{ name = "retoor", email = "retoor@molodetz.nl" }
]
keywords = ["chat", "snek", "molodetz"]
requires-python = ">=3.12"
dependencies = [
"mkdocs>=1.4.0",
"shed",
"app @ git+https://retoor.molodetz.nl/retoor/app",
"beautifulsoup4",
"gunicorn",
"imgkit",
2025-01-24 13:00:10 +00:00
"wkhtmltopdf",
2025-01-25 02:46:33 +00:00
"mistune",
"aiohttp-session",
2025-01-29 17:12:22 +00:00
"cryptography",
2025-01-31 11:06:23 +00:00
"requests",
"asyncssh"
2025-01-24 02:28:43 +00:00
]