-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (67 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
70 lines (67 loc) · 1.76 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
[project]
name = "Watcher"
version = "1.0.0"
description = "Open Source ETL Metadata Framework"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"alembic>=1.16.5",
"asgiref>=3.7.0",
"asyncpg>=0.30.0",
"celery[redis]>=5.5.3",
"docutils>=0.21.2",
"etl-watcher-sdk>=0.1.1",
"fastapi>=0.116.1",
"granian[reload,uvloop]>=2.6.1",
"httpx>=0.28.1",
"opentelemetry-api>=1.39.1",
"opentelemetry-exporter-otlp-proto-http>=1.39.1",
"opentelemetry-instrumentation-celery>=0.60b1",
"opentelemetry-instrumentation-fastapi>=0.60b1",
"opentelemetry-instrumentation-sqlalchemy>=0.60b1",
"opentelemetry-sdk>=1.39.1",
"orjson>=3.11.3",
"pendulum>=3.1.0",
"pydantic-extra-types[pendulum]>=2.10.5",
"pydantic-settings>=2.10.1",
"pyinstrument>=5.1.2",
"rich>=14.1.0",
"roman-numerals==3.1.0",
"scalar-fastapi>=1.3.0",
"slack-sdk>=3.36.0",
"sqlalchemy[asyncio]>=2.0.43",
"sqlmodel>=0.0.24",
"structlog>=25.5.0",
]
[tool.pytest.ini_options]
testpaths = [ "src/tests" ]
pythonpath = [ "." ]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
"ignore::UserWarning",
"ignore::FutureWarning",
"ignore::RuntimeWarning",
"ignore::ResourceWarning",
"ignore::sqlalchemy.exc.SAWarning",
"ignore::pytest.PytestUnraisableExceptionWarning",
]
[tool.ruff]
lint.select = ["I"]
exclude = [
"migrations/",
]
[dependency-groups]
dev = [
"locust>=2.42.0",
"myst-parser>=4.0.1",
"pre-commit>=4.3.0",
"pytest>=8.4.2",
"ruff>=0.14.2",
"sphinx>=8.2.3",
"sphinx-autobuild==2025.8.25",
"sphinx-autodoc-typehints==3.2.0",
"sphinx-rtd-theme==3.0.2",
"sphinx-tabs==3.4.7",
"sphinxcontrib-httpdomain==1.8.1",
]