-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.52 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
63
64
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hotdata-ibis"
version = "0.1.5"
description = "Ibis backend for Hotdata federated SQL API (depends on the hotdata SDK only; not hotdata-runtime)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Hotdata Ibis contributors" }]
keywords = ["ibis", "hotdata", "sql", "dataframe"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"ibis-framework>=10.0,<11",
"hotdata>=0.2.5",
"pyarrow>=15",
"pyarrow-hotfix>=0.6",
"pandas>=2",
"sqlglot>=24",
]
[dependency-groups]
dev = [
"httpx>=0.27",
"pytest>=8",
"pytest-httpserver>=1",
"ruff>=0.5",
]
[tool.uv]
default-groups = ["dev"]
[project.urls]
Documentation = "https://www.hotdata.dev/docs/api-reference"
"Ibis" = "https://ibis-project.org/"
[project.entry-points."ibis.backends"]
hotdata = "ibis_hotdata"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["E402"]
"examples/**/*.py" = ["E402"]