-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (97 loc) · 3.13 KB
/
Copy pathpyproject.toml
File metadata and controls
107 lines (97 loc) · 3.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "flightdeck-ai"
version = "1.3.0"
description = "Ship AI agents safely with release diffs, runtime evidence, and policy gates."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11,<4"
authors = [{ name = "Gottam Sai Bharath", email = "gsbreddy@users.noreply.github.com" }]
keywords = ["ai", "agents", "control-plane", "finops", "deployment", "policy", "operations"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pydantic>=2.0",
"click>=8.0",
"fastapi>=0.100.0",
"uvicorn[standard]>=0.20.0",
"sqlalchemy>=2.0",
"aiosqlite>=0.19.0",
"httpx>=0.24.0",
"pyyaml>=6.0",
"rich>=13.0",
]
[project.optional-dependencies]
openai = ["openai>=1.0"]
anthropic = ["anthropic>=0.20"]
telemetry = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
all = [
"openai>=1.0",
"anthropic>=0.20",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.15,<0.16",
]
postgres = [
"psycopg[binary]>=3.2",
]
# Optional adoption hooks (see docs/sdk-integrations.md). Not imported by core runtime.
integrations-langchain = ["langchain-core>=0.3.0"]
integrations-temporal = ["temporalio>=1.8.0"]
integrations-openai-agents = ["openai-agents>=0.14.0"]
integrations-ci = [
"langchain-core>=0.3.0",
"temporalio>=1.8.0",
"openai-agents>=0.14.0",
]
[project.urls]
Homepage = "https://github.com/flightdeckdev/flightdeck"
Documentation = "https://flightdeckdev.github.io/flightdeck/"
Repository = "https://github.com/flightdeckdev/flightdeck"
Issues = "https://github.com/flightdeckdev/flightdeck/issues"
Changelog = "https://github.com/flightdeckdev/flightdeck/blob/main/CHANGELOG.md"
[project.scripts]
flightdeck = "flightdeck.cli.main:cli"
flightdeck-quickstart-verify = "flightdeck.quickstart_smoke:quickstart_verify_main"
[tool.hatch.build.targets.wheel]
packages = ["src/flightdeck"]
force-include = { "examples/quickstart" = "src/flightdeck/_bundled_quickstart" }
[tool.uv]
# Contributor installs: `uv sync --extra dev` (see DEVELOPMENT.md). After changing
# dependencies or optional extras, run `uv lock` and commit `uv.lock`.
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
# Keep pytest basetemp under the repo (gitignored `.tmp/`) so Windows runs do not rely
# on `%TEMP%\pytest-of-*`, which can raise PermissionError when scandir is denied.
addopts = "--basetemp=.tmp/pytest"
[tool.coverage.run]
source = ["src/flightdeck"]
omit = [
"src/flightdeck/quickstart_smoke.py",
"src/flightdeck/integrations/*",
]
[tool.coverage.report]
show_missing = true
skip_empty = true