-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (98 loc) · 2.3 KB
/
pyproject.toml
File metadata and controls
111 lines (98 loc) · 2.3 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "recce"
dynamic = ["version"]
description = "Environment diff tool for dbt"
readme = "README.md"
authors = [{name = "InfuseAI Dev Team", email = "dev@infuseai.io"}]
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
dependencies = [
"boto3",
"requests>=2.28.1",
"ruamel.yaml>=0.18.6",
"click>=7.1",
"deepdiff>=8.6.1,<10.0",
"portalocker",
"fastapi",
"itsdangerous",
"uvicorn",
"pydantic",
"jinja2",
"rich>=12.0.0",
"sentry-sdk>=2.44.0",
"watchdog",
"websockets",
"py-markdown-table",
"python-dateutil",
"python-multipart",
"GitPython",
"PyGithub",
"sqlglot>=27.29.0,<31.0",
"pytz",
"packaging",
"openpyxl>=3.1.0",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[project.optional-dependencies]
mcp = ["mcp>=1.23.0"]
dev = [
"pytest>=4.6",
"pytest-asyncio>=0.23,<2.0",
"pytest-flake8",
"black>=25.1.0",
"isort>=6.0.1",
"flake8>=7.2.0",
"pre-commit>=4.2.0",
"pytest-mypy",
"pytest-cov",
"twine",
"tox",
"tox-uv",
"pandas",
"httpx",
"dbt-duckdb",
]
[project.scripts]
recce = "recce.cli:cli"
[project.urls]
"Bug Tracker" = "https://github.com/InfuseAI/recce/issues"
"Homepage" = "https://github.com/InfuseAI/recce"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "recce/VERSION"
pattern = "(?P<version>.+)"
[tool.hatch.build.targets.sdist]
include = [
"/recce",
]
artifacts = [
"/recce/data",
]
[tool.hatch.build.targets.wheel]
packages = ["recce"]
artifacts = [
"/recce/data",
]
[tool.uv.workspace]
members = ["recce_cloud"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = [
"asyncio: mark test as an async test (used by pytest-asyncio)",
"scale: mark test as a scale/perf validation (skipped unless RECCE_SCALE_TESTS=1)",
]
asyncio_default_fixture_loop_scope = "function"
addopts = "--ignore=tests/adapter/dbt_adapter/test_proj/dbt_packages"