Files
2026-09-11 16:17:02 -07:00

30 lines
618 B
TOML

[project]
name = "intelligence-delivery-python-core"
version = "0.0.0"
requires-python = ">=3.11"
dependencies = ["copilotkit-intelligence-runtime"]
[tool.uv]
package = false
[tool.uv.sources]
copilotkit-intelligence-runtime = { path = "../runtime-python", editable = true }
[dependency-groups]
dev = ["pytest>=8,<9", "pytest-asyncio>=0.25,<1", "ruff>=0.11,<1", "mypy>=1.15,<2"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true