-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.72 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 1.72 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ai-flightdeck"
version = "0.1.0"
description = "A reference implementation for running enterprise AI adoption on evidence: use cases as code, governed runs, an auditable ROI trail."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Marc Sturlese" }]
keywords = [
"ai-adoption",
"ai-governance",
"ai-transformation",
"llm-ops",
"roi",
"policy-as-code",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"pydantic>=2.7",
"typer>=0.12",
"rich>=13.7",
"PyYAML>=6.0",
"jinja2>=3.1",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.34"]
openai = ["openai>=1.40"]
# SSO directory sync adapters — needed only to REFRESH directory.yaml out-of-band;
# the offline core reads the snapshot and depends on none of these.
azure = ["msgraph-sdk>=1.0"]
google = ["google-api-python-client>=2.0", "google-auth>=2.0"]
dev = ["pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.6"]
[project.urls]
Homepage = "https://github.com/sturlese/flightdeck"
Documentation = "https://github.com/sturlese/flightdeck/tree/main/docs"
[project.scripts]
flightdeck = "flightdeck.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/flightdeck"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"