pyproject.toml 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.1"
  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. "pantalaimon",
  27. "setuptools",
  28. "markdown2",
  29. ]
  30. [project.urls]
  31. "Homepage" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot"
  32. "Bug Tracker" = "https://git.private.coffee/PrivateCoffee/matrix-reportbot/issues"
  33. [project.scripts]
  34. reportbot = "matrix_reportbot.__main__:main"
  35. [tool.hatch.build.targets.wheel]
  36. packages = ["src/matrix_reportbot"]