matrix-roomba/pyproject.toml
Kumi 94bcd8bdd4
All checks were successful
Python Package CI/CD / Publish to PyPI (push) Successful in 1m11s
chore: bump version to 0.1.2
Incremented the project version from 0.1.1 to 0.1.2 to reflect recent updates and improvements. This minor version bump helps ensure clarity in tracking changes and maintaining semantic versioning integrity.
2024-08-27 15:39:10 +02:00

40 lines
921 B
TOML

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