matrix-supportbot/pyproject.toml
Kumi 6447362d04
feat: add initial version of Matrix Support Bot
- Set up CI/CD workflow for Python package publishing to PyPI
- Add MIT License for project
- Create .gitignore file to exclude common Python and project files
- Document project purpose and licensing in README.md
- Add example configuration file (config.yaml.dist)
- Define package metadata and dependencies in pyproject.toml
- Implement SupportBot class for handling support tickets in Matrix
- Implement main script for bot execution and configuration loading

This initial commit establishes the structure and core functionality for the Matrix Support Bot project.
2024-08-18 17:33:56 +02:00

39 lines
936 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "matrix-supportbot"
version = "0.1.0"
authors = [{ name = "Private.coffee Team", email = "support@private.coffee" }]
description = "Simple support chat bot for Matrix"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
packages = ["src/matrix_supportbot"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"matrix-nio>=0.24.0",
]
[project.urls]
"Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot"
"Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-supportbot/issues"
[project.scripts]
supportbot = "matrix_supportbot.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/matrix_supportbot"]