pyproject.toml 487 B

1234567891011121314151617181920
  1. [tool.poetry]
  2. name = "ansible-role-minikube"
  3. version = "0.1.0"
  4. description = "Ansible role for creating minikueb clusters"
  5. authors = ["Kamesh Sampath <kamesh.sampath@hotmail.com>"]
  6. license = "GPL"
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. ansible = "^5.0.0"
  10. kubernetes = "^20.13.0"
  11. jsonpatch = "^1.32"
  12. jmespath = "^0.10.0"
  13. mkdocs-material = "^8.0.2"
  14. mkdocs = "^1.2.3"
  15. ansible-lint = "^5.3.0"
  16. [build-system]
  17. requires = ["poetry-core>=1.0.0"]
  18. build-backend = "poetry.core.masonry.api"