-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 1.29 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
65
66
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lance-namespace-impls"
version = "0.2.0"
description = "Third-party catalog implementations for Lance Namespace"
readme = "README.md"
license = { text = "Apache-2.0" }
requires-python = ">=3.10"
dependencies = [
"pylance>=0.26.0",
"lance-namespace-urllib3-client>=0.4.2",
"pyarrow>=15.0.0",
"typing-extensions>=4.5.0",
]
[project.optional-dependencies]
glue = [
"boto3>=1.35.0",
"botocore>=1.35.0",
]
hive2 = [
"thrift>=0.13.0",
"hive-metastore-client>=1.0.0",
]
hive3 = [
"thrift>=0.13.0",
"hive-metastore-client>=1.0.0",
"pure-sasl>=0.6.2",
"kerberos>=1.3.1",
]
iceberg = []
polaris = []
unity = []
all = [
"boto3>=1.35.0",
"botocore>=1.35.0",
"thrift>=0.13.0",
"hive-metastore-client>=1.0.0",
"pure-sasl>=0.6.2",
"kerberos>=1.3.1",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.4.0",
]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]
[tool.hatch.build.targets.wheel]
packages = ["src/lance_namespace_impls"]
[tool.hatch.build.targets.sdist]
include = [
"src/lance_namespace_impls",
"tests",
"README.md",
"pyproject.toml",
]