-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 1.83 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
76
77
78
79
80
81
82
[project]
name = "dbt-col-lineage"
version = "0.8.0"
description = "Impact analysis for dbt projects using column-level data lineage"
authors = [
{name = "Fszta"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pydantic>=2.10.6,<3.0.0",
"sqlglot (>=26.8.0,<27.0.0)",
"dbt (>=1.0.0.38.29,<2.0.0.0.0)",
"dbt-core (>=1.6.0)",
"dbt-sqlite (>=1.6.0)",
"dbt-duckdb (>=1.9.2,<2.0.0)",
"duckdb (>=1.2.1,<2.0.0)",
"graphviz (>=0.20.3,<0.21.0)",
"fastapi (>=0.115.12,<0.116.0)",
"uvicorn (>=0.34.0,<0.35.0)"
]
[tool.poetry.scripts]
dbt-col-lineage = "dbt_column_lineage.cli.main:main"
test = "scripts.run_tests:run_tests"
test-unit = "scripts.run_tests:run_tests_unit"
test-integration = "scripts.run_tests:run_tests_integration"
test-e2e = "scripts.run_tests:run_tests_e2e"
format = "scripts.format:format_code"
type-check = "scripts.type_check:type_check"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.4,<9.0.0"
mypy = ">=1.15.0,<2.0.0"
black = ">=24.10.0"
ruff = ">=0.8.4"
mkdocs-material = ">=9.5.0,<10.0.0"
mkdocs-click = ">=0.8.1,<0.9.0"
requests = ">=2.32.0,<3.0.0"
types-requests = ">=2.32.0,<3.0.0"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.9"
files = ["dbt_column_lineage", "tests"]
show_error_codes = true
pretty = true
explicit_package_bases = true
namespace_packages = true
[[tool.mypy.overrides]]
module = [
"sqlglot.*",
"dbt.*",
"duckdb.*",
"pytest.*",
"requests.*",
"pydantic.*",
"fastapi.*",
"uvicorn.*",
"click.*"
]
ignore_missing_imports = true
[tool.poetry]
name = "dbt-col-lineage"
packages = [
{include = "dbt_column_lineage"}
]
license = "MIT"