4d694ba2e9
---ci--- project: acdl phase: 14 milestone: v1.14 status: complete requirements: covered: [REQ-148] partial: [] ---/ci---
35 lines
831 B
TOML
35 lines
831 B
TOML
[project]
|
|
name = "acdl"
|
|
version = "1.14.0"
|
|
description = "Agentic Cloud Delivery Platform — consumers declare intent; the platform delivers safe production deployment."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"boto3>=1.34",
|
|
"jsonschema>=4.20",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=8.0",
|
|
"pytest-cov>=4.0",
|
|
"moto[dynamodb]>=5.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
markers = [
|
|
"offline: tests that run without AWS/Checkov/DynamoDB",
|
|
"slow: tests that invoke the full platform pipeline (long-running)",
|
|
]
|
|
addopts = "-v --tb=short"
|
|
filterwarnings = [
|
|
"ignore::DeprecationWarning:botocore.*",
|
|
]
|
|
|
|
[tool.coverage]
|
|
run.source = ["core", "adapters"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.backends._legacy:_Backend" |