pyproject.toml 392 B

12345678910111213141516171819202122
  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. "python-dotenv>=1.2.2",
  10. ]
  11. [dependency-groups]
  12. dev = [
  13. "black>=26.3.1",
  14. "coverage>=7.13.5",
  15. "mypy>=1.19.1",
  16. "pylint>=4.0.5",
  17. "pytest>=9.0.2",
  18. ]
  19. [tool.mypy]
  20. mypy_path = "src/"