[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"]