pyproject.toml 558 B

1234567891011121314151617181920212223
  1. [project]
  2. name = "oe-image-files"
  3. description = "Displays all packaged files on the root file system"
  4. dynamic = ["version"]
  5. requires-python = ">= 3.8"
  6. readme = "README.md"
  7. dependencies = [
  8. "spdx_python_model @ git+https://github.com/spdx/spdx-python-model.git@aa40861f11d1b5d20edba7101835341a70d91179",
  9. ]
  10. [project.scripts]
  11. oe-image-files = "oe_image_files:main"
  12. [build-system]
  13. requires = ["hatchling"]
  14. build-backend = "hatchling.build"
  15. [tool.hatch.version]
  16. path = "src/oe_image_files/version.py"
  17. [tool.hatch.metadata]
  18. allow-direct-references = true