-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 746 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 746 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "qstrings"
version = "0.4.3"
description = "Q-strings: query anything"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"autoregistry>=1.1.2",
"duckdb>=1.2",
"fsspec>=2025.9.0",
"python-dotenv>=1.2.1",
"sqlglot>=27.6.0",
]
[project.scripts]
q = "qstrings.cli:app"
qh = "qstrings.cli:app_history"
[project.optional-dependencies]
all = [
"qstrings[ai,api,cli]",
]
ai = [
"openai>=1.101.0",
]
cli = [
"cyclopts>=4.0",
]
api = [
"robyn>=0.72.0",
]
[dependency-groups]
dev = [
"pytest>=8.4.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv.sources]
qstrings = { workspace = true }
[tool.qstrings]
history = "qstrings/history.duckdb"