-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.04 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 1.04 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "imgctx"
version = "0.1.0"
description = "Transparent image-context compression proxy for agentic coding CLIs, render bulky text context to images to cut input tokens."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "imgctx contributors" }]
keywords = ["llm", "proxy", "vision", "token-compression", "opencode", "agentic"]
dependencies = [
"starlette>=0.37",
"uvicorn[standard]>=0.30",
"httpx>=0.27",
"reportlab>=4.0",
"pdf2image>=1.17",
"pillow>=10.0",
"tiktoken>=0.7",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23"]
bench = ["matplotlib>=3.8"]
[project.scripts]
imgctx = "imgctx.__main__:main"
[project.urls]
Homepage = "https://github.com/NatBrian/image-token-compression"
[tool.setuptools]
packages = ["imgctx"]
[tool.setuptools.package-data]
imgctx = ["assets/*.ttf"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]