2025-01-17 23:06:17 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools", "wheel"]
|
2025-01-24 03:28:43 +01:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Snek"
|
|
|
|
version = "1.0.0"
|
|
|
|
readme = "README.md"
|
2025-02-03 20:45:29 +01:00
|
|
|
#license = { file = "LICENSE", content-type="text/markdown" }
|
2025-01-24 03:28:43 +01:00
|
|
|
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",
|
2025-03-29 07:13:23 +01:00
|
|
|
"lxml",
|
|
|
|
|
2025-01-24 03:28:43 +01:00
|
|
|
"shed",
|
|
|
|
"app @ git+https://retoor.molodetz.nl/retoor/app",
|
|
|
|
"beautifulsoup4",
|
|
|
|
"gunicorn",
|
|
|
|
"imgkit",
|
2025-01-24 14:00:10 +01:00
|
|
|
"wkhtmltopdf",
|
2025-01-25 03:46:33 +01:00
|
|
|
"mistune",
|
|
|
|
"aiohttp-session",
|
2025-01-29 18:12:22 +01:00
|
|
|
"cryptography",
|
2025-01-31 12:06:23 +01:00
|
|
|
"requests",
|
2025-02-01 05:41:03 +01:00
|
|
|
"asyncssh",
|
2025-02-02 23:14:00 +01:00
|
|
|
"emoji",
|
2025-02-05 19:11:11 +01:00
|
|
|
"aiofiles",
|
2025-02-26 00:22:36 +01:00
|
|
|
"PyJWT",
|
|
|
|
"multiavatar"
|
2025-01-24 03:28:43 +01:00
|
|
|
]
|
|
|
|
|