pyproject.toml 364 B

123456789101112131415161718192021
  1. [project]
  2. name = "pyci"
  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. "pydantic>=2.12.5",
  9. ]
  10. [dependency-groups]
  11. dev = [
  12. "black>=26.3.1",
  13. "coverage>=7.13.5",
  14. "mypy>=1.19.1",
  15. "pylint>=4.0.5",
  16. "pytest>=9.0.2",
  17. ]
  18. [tool.mypy]
  19. mypy_path = "src/"