-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 921 Bytes
/
pyproject.toml
File metadata and controls
48 lines (40 loc) · 921 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
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["framework", "evaluation", "tools"]
[project]
name = "hecks-takehome"
version = "0.1.0"
description = "Agent Framework for SQL operations"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.0",
"polars>=1.0.0",
"rich>=13.0.0",
"connectorx>=0.3.0",
"pyarrow>=23.0.0",
"sqlglot[rs]>=28.7.0",
"duckdb>=1.0.0",
"pandas>=2.0.0",
"tqdm>=4.67.1",
"tenacity>=8.0.0",
"tiktoken>=0.12.0",
]
[project.scripts]
evaluate = "evaluation.evaluate:main"
interactive = "interactive:main"
[tool.ty.environment]
python-version = "3.13"
[tool.ty.terminal]
error-on-warning = true
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]