pnut-matrix/pyproject.toml
Morgan McMillian 3d5abbba8b
All checks were successful
git.dreamfall.space/pnut-matrix/pipeline/head This commit looks good
fixed reply handling and added more support for post interactions
- Replies from clients with quotes are handled properly, issue #75
- Repost and Bookmark via reactions now supported
- Bot commands for post interactions added, issue #71
2025-01-23 10:10:41 -08:00

40 lines
1 KiB
TOML

[project]
name = "pnut-matrix"
version = "1.3.99"
authors = [
{ name="Morgan McMillian", email="morgan@mcmillian.dev" },
]
description = "A matrix appservice bridge for pnut.io"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"pyyaml",
"requests",
"Flask[async]",
"pnutpy>=0.5.0",
"filemagic",
"mautrix>=0.20.6,<0.21",
"websockets",
"asyncclick",
"peewee",
"tomlkit",
"beautifulsoup4",
]
[project.urls]
"Homepage" = "https://git.dreamfall.space/spacenerdmo/pnut-matrix"
"Bug Tracker" = "https://git.dreamfall.space/spacenerdmo/pnut-matrix/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.entry-points.console_scripts]
pnutservice = "pnut_matrix.pnutservice:main"
appservice = "pnut_matrix.appservice:main"
ascmd = "pnut_matrix.cmd:cmd"