pyproject.toml 570 B

12345678910111213141516171819202122
  1. [project]
  2. name = "xopp2py"
  3. description = "A Python interface to the Xournal++ file format"
  4. version = "1.0.0"
  5. authors = [
  6. { name="Joeri Exelmans", email="joeri.exelmans@uantwerpen.be" },
  7. ]
  8. readme = "README.md"
  9. requires-python = ">=3.10"
  10. classifiers = [
  11. "Programming Language :: Python :: 3",
  12. "Operating System :: OS Independent",
  13. ]
  14. [build-system]
  15. requires = ["hatchling"]
  16. build-backend = "hatchling.build"
  17. [project.urls]
  18. "Homepage" = "https://msdl.uantwerpen.be/git/jexelmans/xopp2py"
  19. "Bug Tracker" = "https://msdl.uantwerpen.be/git/jexelmans/xopp2py/issues"