pyproject.toml 514 B

12345678910111213141516171819202122232425262728
  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. "colored>=2.3.2",
  9. "pydantic>=2.12.5",
  10. "python-dotenv>=1.2.2",
  11. ]
  12. [dependency-groups]
  13. dev = [
  14. "black>=26.3.1",
  15. "coverage>=7.13.5",
  16. "mypy>=1.19.1",
  17. "pylint>=4.0.5",
  18. "pytest>=9.0.2",
  19. ]
  20. [tool.mypy]
  21. mypy_path = "src/"
  22. exclude = "build/"
  23. [build-system]
  24. requires = ["uv_build>=0.10.9,<0.11"]
  25. build-backend = "uv_build"