-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 2.22 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
[project]
name = "claw-compactor"
version = "7.1.0"
description = "14-stage Fusion Pipeline for LLM token compression — 15-82% reduction depending on content, zero LLM inference cost, reversible compression, AST-aware code analysis"
license = "MIT"
requires-python = ">=3.9"
readme = "README.md"
keywords = [
"token-compression",
"llm",
"prompt-compression",
"context-compression",
"ai-agent",
"token-optimization",
"token-reduction",
"cost-reduction",
"context-window",
"workspace-compression",
"memory-compression",
"openclaw",
"llm-tools",
"ai-cost-saving",
"context-pruning",
"tree-sitter",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: General",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[[project.authors]]
name = "Bot777"
[[project.authors]]
name = "OpenClaw Contributors"
[project.urls]
Homepage = "https://github.com/open-compress/claw-compactor"
Documentation = "https://docs.openclaw.ai"
Repository = "https://github.com/open-compress/claw-compactor"
"Bug Tracker" = "https://github.com/open-compress/claw-compactor/issues"
Changelog = "https://github.com/open-compress/claw-compactor/releases"
"Community" = "https://discord.com/invite/clawd"
[project.scripts]
claw-compactor = "claw_compactor.cli:main"
[project.optional-dependencies]
accurate = ["tiktoken>=0.5.0"]
dev = ["pytest>=7.0", "pyyaml>=6.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.package-dir]
"claw_compactor" = "scripts/lib"
"claw_compactor.fusion" = "scripts/lib/fusion"
"claw_compactor.rewind" = "scripts/lib/rewind"
[tool.setuptools]
packages = [
"claw_compactor",
"claw_compactor.fusion",
"claw_compactor.rewind",
"benchmark",
"scripts",
]