| 123456789101112131415161718192021222324252627 |
- [project]
- name = "cipy"
- version = "0.1.0"
- description = "Python based tool for operating CI Pipelines"
- readme = "README.md"
- requires-python = ">=3.14"
- dependencies = [
- "colored>=2.3.2",
- "pydantic>=2.12.5",
- "python-dotenv>=1.2.2",
- ]
- [dependency-groups]
- dev = [
- "black>=26.3.1",
- "coverage>=7.13.5",
- "mypy>=1.19.1",
- "pylint>=4.0.5",
- "pytest>=9.0.2",
- ]
- [tool.mypy]
- mypy_path = "src/"
- [build-system]
- requires = ["uv_build>=0.10.9,<0.11"]
- build-backend = "uv_build"
|