pyproject.toml 984 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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-reportbot"
  8. version = "0.0.3"
  9. authors = [
  10. { name="Private.coffee Team", email="support@private.coffee" },
  11. ]
  12. description = "Simple content report subscription bot for Matrix."
  13. readme = "README.md"
  14. license = { file="LICENSE" }
  15. requires-python = ">=3.10"
  16. packages = [
  17. "src/matrix_reportbot"
  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. "setuptools",
  27. "markdown2",
  28. ]
  29. [project.urls]
  30. "Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot"
  31. "Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot/issues"
  32. [project.scripts]
  33. reportbot = "matrix_reportbot.__main__:main"
  34. [tool.hatch.build.targets.wheel]
  35. packages = ["src/matrix_reportbot"]