matrix-roomba/pyproject.toml
Kumi d5880f9a2c
Some checks failed
Python Package CI/CD / Publish to PyPI (push) Successful in 1m13s
Python Package CI/CD / Setup and Test (push) Failing after 11m57s
chore: bump version to 0.1.1
Incremented the project version from 0.1.0 to 0.1.1 to reflect recent bug fixes and minor adjustments. This version update ensures compatibility with downstream dependencies and communicates stability improvements.
2024-08-17 15:45:18 +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.1"
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"]