2023-05-25 07:28:28 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
2024-05-05 17:21:18 +00:00
|
|
|
name = "matrix-reportbot"
|
|
|
|
version = "0.0.1"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
authors = [
|
2024-03-02 14:31:14 +00:00
|
|
|
{ name="Private.coffee Team", email="support@private.coffee" },
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
2024-05-05 17:21:18 +00:00
|
|
|
description = "Simple content report subscription bot for Matrix."
|
2023-05-25 07:28:28 +00:00
|
|
|
readme = "README.md"
|
|
|
|
license = { file="LICENSE" }
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
|
|
|
packages = [
|
2024-05-05 17:21:18 +00:00
|
|
|
"src/matrix_reportbot"
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
2024-03-02 14:31:14 +00:00
|
|
|
"matrix-nio",
|
|
|
|
"pantalaimon",
|
|
|
|
"setuptools",
|
|
|
|
"markdown2",
|
2023-05-25 07:28:28 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2024-05-05 17:21:18 +00:00
|
|
|
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot"
|
|
|
|
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot/issues"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
[project.scripts]
|
2024-05-05 17:21:18 +00:00
|
|
|
reportbot = "matrix_reportbot.__main__:main"
|
2023-05-25 07:28:28 +00:00
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
2024-05-05 17:21:18 +00:00
|
|
|
packages = ["src/matrix_reportbot"]
|