-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 1017 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
49
50
51
52
53
[project]
name = "iceburg"
version = "0.1.0"
description = "Apache Iceberg E-Commerce Demo with Trino, PyIceberg, and Superset"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
# Iceberg
"pyiceberg[pyiceberg-core]>=0.7.0",
"pyarrow>=17.0.0",
# Data generation
"faker>=30.0.0",
# HTTP requests (for verification scripts)
"requests>=2.32.0",
# Load testing
"locust>=2.31.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"ruff>=0.7.0",
"mypy>=1.13.0",
"types-requests>=2.32.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scripts/iceburg"]
[tool.ruff]
target-version = "py313"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.13"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
[dependency-groups]
dev = [
"mcp-trino-python>=0.7.1",
]