-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (66 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (66 loc) · 1.61 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
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dbt-feldera"
readme = "README.md"
description = "The dbt adapter for Feldera — DBSP-native incremental view maintenance"
version = "0.324.0"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ "name" = "Feldera Team", "email" = "dev@feldera.com" },
{ "name" = "Raki Rahman", "email" = "mdrakiburrahman@gmail.com" },
]
keywords = [
"feldera",
"dbt",
"incremental",
"streaming",
"dbsp",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"dbt-core~=1.11",
"dbt-adapters~=1.16",
"dbt-common~=1.12",
"feldera>=0.275.0",
"agate>=1.9.1",
"sqlglot>=30.1.0",
]
[project.urls]
Homepage = "https://www.feldera.com"
Documentation = "https://docs.feldera.com"
Repository = "https://github.com/feldera/feldera"
Issues = "https://github.com/feldera/feldera/issues"
[project.entry-points."dbt.adapters"]
feldera = "dbt.adapters.feldera"
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-timeout>=2.3.1",
"ruff==0.9.10",
]
test = [
"pytest>=9.0.3",
"pytest-timeout>=2.3.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: marks tests that require a running Feldera instance",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.setuptools.packages.find]
namespaces = true
include = ["dbt*"]
[tool.setuptools.package-data]
"dbt.include.feldera" = ["*.yml", "macros/**/*.sql"]