pyproject.toml 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [tool.hatch.metadata]
  5. allow-direct-references = true
  6. [project]
  7. name = "matrix-rssbot"
  8. version = "0.1.1"
  9. authors = [
  10. { name="Private.coffee Team", email="support@private.coffee" },
  11. ]
  12. description = "Simple RSS feed bridge for Matrix"
  13. readme = "README.md"
  14. license = { file="LICENSE" }
  15. requires-python = ">=3.10"
  16. packages = [
  17. "src/matrix_rssbot"
  18. ]
  19. classifiers = [
  20. "Programming Language :: Python :: 3",
  21. "License :: OSI Approved :: MIT License",
  22. "Operating System :: OS Independent",
  23. ]
  24. dependencies = [
  25. "matrix-nio",
  26. "pantalaimon",
  27. "setuptools",
  28. "markdown2",
  29. "feedparser",
  30. ]
  31. [project.urls]
  32. "Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-rssbot"
  33. "Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-rssbot/issues"
  34. [project.scripts]
  35. rssbot = "matrix_rssbot.__main__:main"
  36. [tool.hatch.build.targets.wheel]
  37. packages = ["src/matrix_rssbot"]