matrix-rssbot/pyproject.toml
Kumi 5933e35f68
All checks were successful
Python Package CI/CD / Setup and Test (push) Successful in 1m8s
Python Package CI/CD / Publish to PyPI (push) Successful in 1m6s
chore: bump version to 0.1.6 in pyproject.toml
Updated the project version from 0.1.5 to 0.1.6 to reflect recent changes and improvements in the codebase. Ensures compatibility and clarity in the project's release management.
2024-06-16 08:41:06 +02:00

43 lines
985 B
TOML

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