-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (43 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
53 lines (43 loc) · 967 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "flowsense"
version = "0.1.0"
description = "Temporal drift and anomaly detection for Apache Airflow"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"pydantic>=2.8",
"numpy>=2.0",
"typer>=0.12",
"rich>=13.7",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"pyright>=1.1.400",
"pytest>=8.0",
"ruff>=0.6",
]
mcp = [
"mcp[cli]>=2.0",
]
[project.scripts]
flowsense = "flowsense.cli.main:app"
flowsense-mcp = "flowsense.mcp.server:main"
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
flowsense = ["py.typed"]
[tool.pyright]
include = ["src"]
typeCheckingMode = "standard"
pythonVersion = "3.12"
[tool.pytest.ini_options]
pythonpath = ["src"]
markers = [
"integration: tests that require a running Airflow instance",
]