pyproject.toml 537 B

1234567891011121314151617181920212223242526272829
  1. [project]
  2. name = "cipy"
  3. version = "0.1.0"
  4. description = "Python based tool for operating CI Pipelines"
  5. readme = "README.md"
  6. requires-python = ">=3.14"
  7. dependencies = [
  8. "chevron>=0.14.0",
  9. "colored>=2.3.2",
  10. "pydantic>=2.12.5",
  11. "python-dotenv>=1.2.2",
  12. ]
  13. [dependency-groups]
  14. dev = [
  15. "black>=26.3.1",
  16. "coverage>=7.13.5",
  17. "mypy>=1.19.1",
  18. "pylint>=4.0.5",
  19. "pytest>=9.0.2",
  20. ]
  21. [tool.mypy]
  22. mypy_path = "src/"
  23. exclude = "build/"
  24. [build-system]
  25. requires = ["uv_build>=0.10.9,<0.11"]
  26. build-backend = "uv_build"