-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 820 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (26 loc) · 820 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>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "cleo-sql"
version = "1.4.2"
description = "A small tool-using SQL analyst that discovers real values in your database before answering."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
dependencies = ["sqlglot>=20,<32"]
[project.optional-dependencies]
gguf = ["llama-cpp-python>=0.3,<1", "huggingface_hub"]
hf = ["torch>=2.1", "transformers>=5.3", "huggingface_hub"]
int8 = ["accelerate>=0.26", "bitsandbytes>=0.43"]
mcp = ["mcp"]
test = ["pytest", "duckdb"]
[project.scripts]
cleo = "cleo.cli:main"
[project.urls]
Homepage = "https://github.com/Dreeseaw/cleo"
[tool.setuptools]
packages = ["cleo"]
license-files = ["LICENSE"]
[tool.setuptools.package-data]
cleo = ["py.typed"]