-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "capability-runtime"
version = "0.1.0"
description = "Bridge/glue layer that composes Agently (LLM/TriggerFlow) with skills-runtime-sdk (skills/tools/WAL/events)."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"PyYAML>=6",
"pydantic>=2,<3",
"agently==4.0.8",
"skills-runtime-sdk==0.1.11",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-asyncio>=0.23",
"mypy>=1.8",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-q"
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: optional integration tests (may require docker/services)",
]
[tool.mypy]
python_version = "3.10"
mypy_path = "src"
explicit_package_bases = true
ignore_missing_imports = true
warn_unused_ignores = false
warn_unused_configs = true
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
module = ["examples.*"]
ignore_errors = true
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"