pyproject.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [tool.poetry]
  2. name = "mcrpc"
  3. version = "1.2.3"
  4. description = "MCRPC (Minecraft Resource Pack Comparator) checks your resource pack against any version of Minecraft to show resources missing from your pack for that version. It can also compare any two versions of Minecraft and show missing (added) files."
  5. authors = ["txtsd <code@ihavea.quest>"]
  6. license = "GPL-3.0-only"
  7. readme = "README.md"
  8. homepage = "https://sr.ht/~txtsd/mcrpc/"
  9. repository = "https://git.sr.ht/~txtsd/mcrpc"
  10. keywords = ["minecraft", "resourcepack"]
  11. classifiers = [
  12. "Development Status :: 5 - Production/Stable",
  13. "Intended Audience :: End Users/Desktop",
  14. "Topic :: Games/Entertainment",
  15. "Topic :: Internet",
  16. "Topic :: Multimedia",
  17. "Topic :: Multimedia :: Graphics",
  18. "Topic :: Multimedia :: Sound/Audio",
  19. "Programming Language :: Python :: 3",
  20. "Programming Language :: Python :: 3.7",
  21. "Programming Language :: Python :: 3.8",
  22. "Programming Language :: Python :: 3.9",
  23. "Programming Language :: Python :: 3.10",
  24. "Programming Language :: Python :: 3.11",
  25. "Operating System :: POSIX",
  26. "Operating System :: MacOS",
  27. "Operating System :: Microsoft",
  28. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  29. ]
  30. [tool.poetry.dependencies]
  31. python = "^3.7"
  32. requests = "2.28.1"
  33. appdirs = "1.4.4"
  34. [tool.poetry.group.dev.dependencies]
  35. nuitka = "1.1.7"
  36. [build-system]
  37. requires = ["poetry-core"]
  38. build-backend = "poetry.core.masonry.api"