37 lines
966 B
TOML
37 lines
966 B
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.9"
|
|
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",
|
|
]
|
|
|
|
[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"
|
|
matrixappsvc = "pnut_matrix.appservice:main"
|