-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
146 lines (131 loc) · 3.44 KB
/
Copy pathpyproject.toml
File metadata and controls
146 lines (131 loc) · 3.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[project]
name = "skillengine"
dynamic = ["version"]
description = "A standalone skills execution engine for LLM agents"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Alex Zhang", email = "alex@example.com" }
]
keywords = ["llm", "agent", "skills", "ai", "automation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pyyaml>=6.0",
"pydantic>=2.0",
"watchfiles>=0.21",
"rich>=13.0",
"openai>=2.16.0",
"python-dotenv>=1.2.1",
"partial-json-parser>=0.1",
]
[project.optional-dependencies]
openai = ["openai>=1.0"]
anthropic = ["anthropic>=0.18"]
websockets = ["websockets>=12.0"]
memory = ["httpx>=0.24"]
web = ["starlette>=0.27", "uvicorn>=0.23"]
sandbox = ["boxlite>=0.1"]
a2a-server = ["fastapi>=0.100", "uvicorn>=0.23"]
claude-sdk = ["claude-agent-sdk>=0.1"]
telemetry = [
"opentelemetry-api>=1.27",
"opentelemetry-sdk>=1.27",
]
skills-pdf = ["pypdf>=6.6.2", "reportlab>=4.4.9"]
skills-pptx = ["markitdown[pptx]>=0.1.4"]
skills-media = ["pillow>=12.1.0"]
skills-all = [
"pypdf>=6.6.2",
"reportlab>=4.4.9",
"markitdown[pptx]>=0.1.4",
"pillow>=12.1.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.1",
"mypy>=1.8",
"types-PyYAML>=6.0",
"fastapi>=0.135.2",
"uvicorn>=0.41.0",
"pypdf>=6.6.2",
"reportlab>=4.4.9",
"markitdown[pptx]>=0.1.4",
"pillow>=12.1.0",
"opentelemetry-api>=1.27",
"opentelemetry-sdk>=1.27",
]
[project.urls]
Homepage = "https://github.com/sawzhang/skillengine"
Repository = "https://github.com/sawzhang/skillengine"
[project.scripts]
skills = "skillengine.cli:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/skillengine/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/skillengine"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = false
disallow_untyped_defs = false
disallow_untyped_calls = false
[[tool.mypy.overrides]]
# Modules with relaxed typing — third-party SDK boundaries, dynamic dispatch, or
# in-progress refactors. Goal: shrink this list as code is hardened.
module = [
"skillengine._message_format",
"skillengine.extensions.manager",
"skillengine.tools.*",
"skillengine.harness.*",
"skillengine.a2a.*",
"skillengine.web.*",
"skillengine.transports.*",
"skillengine.packages.*",
"skillengine.telemetry",
]
disable_error_code = [
"assignment",
"arg-type",
"attr-defined",
"dict-item",
"union-attr",
"unused-ignore",
"var-annotated",
"import-not-found",
"import-untyped",
"override",
"type-var",
"misc",
"no-untyped-def",
"untyped-decorator",
"type-arg",
"return-value",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]