pyproject.toml 531 B

1234567891011121314151617181920212223
  1. [project]
  2. name = "hardware.dark.fi"
  3. description = "Webshop for the Dark Fi project"
  4. requires-python = ">3.12"
  5. dynamic = ["version"]
  6. authors = [{name = "André Fincato", email = "work@andrefincato.info"}]
  7. readme = "README.md"
  8. dependencies = [
  9. ]
  10. [tool.ruff]
  11. fix = true
  12. [tool.ruff.lint]
  13. extend-select = [
  14. "D", # pydocstyle
  15. ]
  16. ignore = ["D100", "D101", "D104", "D205", "D400", "D401", "D404", "D415", "E402", "E501", "E203"]
  17. [tool.ruff.format]
  18. # Enable reformatting of code snippets in docstrings.
  19. docstring-code-format = true