-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.06 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
[project]
name = "sqlmesh-utils"
dynamic = ["version"]
description = "Utilities for SQLMesh"
readme = "README.md"
requires-python = ">= 3.9"
dependencies = [
"sqlmesh>=0.163.0"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest_mock",
"pytest_xdist",
"mypy~=1.13.0",
"pre-commit",
"ruff~=0.7.0",
"sqlmesh[trino]",
"sqlmesh[postgres]"
]
[project.entry-points."sqlmesh.materializations"]
non_idempotent_incremental_by_time_range = "sqlmesh_utils.materializations:NonIdempotentIncrementalByTimeRangeMaterialization"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include=["sqlmesh_utils*"]
[tool.setuptools_scm]
version_file = "sqlmesh_utils/_version.py"
fallback_version = "0.0.0"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
markers = [
"integration: integration tests that have external dependencies",
# docker databases
"trino: tests that use trino",
"postgres: tests that use postgres"
]