-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (55 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "felderize"
readme = "README.md"
description = "SQL dialect to Feldera SQL translator agent"
version = "0.310.0"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ "name" = "Feldera Team", "email" = "dev@feldera.com" },
]
keywords = [
"feldera",
"spark",
"sql",
"translator",
"llm",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"anthropic>=0.39.0",
"httpx>=0.27", # llm.py catches httpx errors in the stream retry loop
"sqlparse>=0.5.0",
"click>=8.1.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
]
# Test/dev only. sqlglot is used by the e2e runner (Spark→Feldera data-literal
# transpile), feldera by the e2e runner to drive a live pipeline, pyarrow by the
# feldera SDK to read query results (pull it in explicitly so the e2e runner does
# not fail with "No module named 'pyarrow'" when the SDK's transitive dep is absent).
[project.optional-dependencies]
test = ["pytest>=8", "sqlglot>=25.0.0", "feldera", "pyarrow>=14"]
[tool.pytest.ini_options]
testpaths = ["tests/unit"]
[tool.setuptools.package-dir]
felderize = "felderize"
[tool.setuptools.package-data]
felderize = [
"skills/*.md",
"spark_sql/*.sql",
"prompts/*.md",
]
[project.scripts]
felderize = "felderize.cli:cli"
[project.urls]
Homepage = "https://www.feldera.com"
Documentation = "https://docs.feldera.com"
Repository = "https://github.com/feldera/feldera"
Issues = "https://github.com/feldera/feldera/issues"