-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 1.42 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "skillclaw"
version = "0.4.0"
description = "Claw agent skill injection and auto-evolution"
requires-python = ">=3.10"
dependencies = [
"click>=8.0",
"pyyaml>=6.0",
"fastapi",
"uvicorn[standard]",
"httpx",
"tiktoken",
]
[project.optional-dependencies]
# Tokenizer for prompt truncation and PRM/OPD token-level data
tokenizer = [
"transformers>=4.51.1",
]
# Embedding-based skill retrieval
embedding = [
"numpy",
"sentence-transformers",
]
# Skill evolution / OPD / PRM via OpenAI-compatible LLM
evolve = [
"openai",
]
# Cloud skill sharing via Alibaba Cloud OSS
sharing = [
"boto3",
"oss2",
]
# Central evolve server deployment
server = [
"boto3",
"openai",
"oss2",
"python-dotenv",
]
# Everything
all = [
"skillclaw[tokenizer,embedding,evolve,sharing,server]",
]
[project.scripts]
skillclaw = "skillclaw.cli:skillclaw"
skillclaw-evolve-server = "evolve_server.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["skillclaw*", "evolve_server*"]
[tool.setuptools.package-data]
skillclaw = ["dashboard_assets/*"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E731", "F403", "F405"]
[tool.ruff.lint.per-file-ignores]
"evolve_server/pipeline/execution.py" = ["E501"]
[tool.uv]
# Install with: uv sync --extra all