-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.39 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
[project]
name = "query-farm-sql-scan-planning"
version = "0.1.6"
description = "A Python library for intelligent file filtering using SQL expressions and metadata-based scan planning. This library enables efficient data lake query optimization by determining which files need to be scanned based on their statistical metadata."
authors = [
{ name = "Rusty Conover", email = "rusty@conover.me" }
]
dependencies = [
"sqlglot>=26.33.0",
"duckdb>=1.0.0",
"pyarrow>=18.0.0",
]
readme = "README.md"
requires-python = ">= 3.11"
keywords = ["sql", "predicate pushdown", "sql scan planning", "scan planning"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Programming Language :: Python :: 3.11"
]
[project.urls]
Repository = "https://github.com/query-farm/python-sql-scan-planning.git"
Issues = "https://github.com/query-farm/python-sql-scan-planning/issues"
[build-system]
requires = ["hatchling==1.26.3", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.2",
"pytest-mypy>=0.10.3",
"pytest-env>=1.1.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.2",
"pdoc>=15.0.4",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/query_farm_sql_scan_planning"]