pyproject.toml 533 B

123456789101112131415161718192021222324252627282930313233
  1. [project]
  2. name = "smgdc"
  3. description = "SourceMod gamedata checker and file generator"
  4. version = "0.0.1"
  5. dependencies = [
  6. "angr == 9.2.99",
  7. "itanium_demangler == 1.1",
  8. "msgspec == 0.18.6",
  9. ]
  10. requires-python = ">= 3.11"
  11. [project.scripts]
  12. smgdc = "smgdc.app:main"
  13. [project.optional-dependencies]
  14. dev = [
  15. "mypy == 1.9.0",
  16. "ruff == 0.4.0"
  17. ]
  18. [build-system]
  19. build-backend = 'setuptools.build_meta'
  20. requires = [
  21. 'setuptools',
  22. ]
  23. [tool.ruff]
  24. line-length = 96
  25. [tool.mypy]
  26. disable_error_code = ["import-untyped"]