create AWS infra

This commit is contained in:
2026-05-15 10:26:43 -04:00
parent 6563b4cc4b
commit 1bc5052d22
21 changed files with 1502 additions and 0 deletions

37
pyproject.toml Normal file
View File

@@ -0,0 +1,37 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qai-cli"
version = "0.1.0"
description = "CLI for SageMaker ONNX training and Qualcomm AI Hub optimization"
requires-python = ">=3.13"
dependencies = [
"aws-cdk-lib>=2.180.0",
"typer==0.25.0",
"boto3>=1.34,<1.42",
"constructs>=10.0.0",
"pydantic>=2.13.3",
"pyyaml>=6.0.3",
]
[project.scripts]
qai-cli = "src.main:app"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"boto3-stubs[iam,s3,sagemaker]",
"pyright>=1.1.409",
"types-PyYAML",
"ruff>=0.4",
]
[tool.ruff]
line-length = 123
[tool.ruff.lint]
select = ["E", "F", "I"]