forked from ojuschugh1/sqz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 943 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 943 Bytes
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqz"
version = "1.2.0"
description = "Universal context intelligence layer — compresses LLM context across CLI, MCP, browser, and IDE"
readme = "README.md"
license = { text = "Elastic License 2.0 (ELv2)" }
requires-python = ">=3.8"
keywords = ["llm", "context", "compression", "mcp", "ai", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/ojuschugh1/sqz"
Repository = "https://github.com/ojuschugh1/sqz"
[project.scripts]
sqz = "sqz.__main__:main"
sqz-mcp = "sqz.__main__:main_mcp"
[tool.setuptools.packages.find]
where = ["python"]