-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 765 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "elt-observability"
version = "0.1.0"
description = "Production-ready ELT Observability Platform for dbt + Airflow stacks"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0",
"sqlalchemy>=2.0",
"pandas>=2.0",
"pyyaml>=6.0",
"jinja2>=3.1",
"httpx>=0.25",
"structlog>=23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.0",
"pytest-cov>=4.0",
]
[tool.hatch.build.targets.wheel]
packages = ["collector", "detectors", "storage", "dashboards", "alerting"]
exclude = ["tests", "output", "dbt_integration"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "--tb=short -v"