Kumi
64b4a28cef
Update project name and metadata from matrix-supportbot to matrix-applicationbot to reflect new functionality of handling space application requests. This includes changes in package names, author information, and repository URLs to align with the project's new identity. This helps avoid confusion and provides clarity on the bot's purpose.
40 lines
951 B
TOML
40 lines
951 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[project]
|
|
name = "matrix-applicationbot"
|
|
version = "0.1.2"
|
|
|
|
authors = [{ name = "Kumi", email = "kumi@private.coffee" }]
|
|
|
|
description = "Simple space application chat bot for Matrix"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.10"
|
|
|
|
packages = ["src/matrix_applicationbot"]
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"matrix-nio>=0.24.0",
|
|
"pyyaml"
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/kumi/matrix-applicationbot"
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/matrix-applicationbot/issues"
|
|
|
|
[project.scripts]
|
|
applicationbot = "matrix_applicationbot.main:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/matrix_applicationbot"]
|