🗝 KeyzHub
19Keys · community archive
791 bytes raw
 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "aave-compress"
version = "0.1.0"
description = "AAVE-pattern LLM prompt compressor, grounded in documented African American Vernacular English grammar"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "19Keys", email = "19key@protonmail.com" }]
dependencies = [
  "anthropic>=0.40",
]

[project.optional-dependencies]
dev = ["pytest>=8.0", "tiktoken>=0.7", "python-dotenv>=1.0"]
tiktoken = ["tiktoken>=0.7"]
dotenv = ["python-dotenv>=1.0"]

[project.scripts]
aave-compress = "aave_compress.cli:main"

[tool.hatch.build.targets.wheel]
packages = ["src/aave_compress"]

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
pythonpath = ["src"]