2024-08-18 15:33:56 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[tool.hatch.metadata]
|
|
|
|
allow-direct-references = true
|
|
|
|
|
|
|
|
[project]
|
2024-11-08 06:55:29 +00:00
|
|
|
name = "matrix-applicationbot"
|
2024-08-18 17:24:11 +00:00
|
|
|
version = "0.1.2"
|
2024-08-18 15:33:56 +00:00
|
|
|
|
2024-11-08 06:55:29 +00:00
|
|
|
authors = [{ name = "Kumi", email = "kumi@private.coffee" }]
|
2024-08-18 15:33:56 +00:00
|
|
|
|
2024-11-08 06:55:29 +00:00
|
|
|
description = "Simple space application chat bot for Matrix"
|
2024-08-18 15:33:56 +00:00
|
|
|
readme = "README.md"
|
|
|
|
license = { file = "LICENSE" }
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
2024-11-08 06:55:29 +00:00
|
|
|
packages = ["src/matrix_applicationbot"]
|
2024-08-18 15:33:56 +00:00
|
|
|
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
"matrix-nio>=0.24.0",
|
2024-08-18 16:53:59 +00:00
|
|
|
"pyyaml"
|
2024-08-18 15:33:56 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
2024-11-08 06:55:29 +00:00
|
|
|
"Homepage" = "https://git.private.coffee/kumi/matrix-applicationbot"
|
|
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/matrix-applicationbot/issues"
|
2024-08-18 15:33:56 +00:00
|
|
|
|
|
|
|
[project.scripts]
|
2024-11-08 06:55:29 +00:00
|
|
|
applicationbot = "matrix_applicationbot.main:main"
|
2024-08-18 15:33:56 +00:00
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
2024-11-08 06:55:29 +00:00
|
|
|
packages = ["src/matrix_applicationbot"]
|