pyproject.toml 414 B

1234567891011121314151617181920212223
  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. "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/"