Files
qai-cli/pyproject.toml
2026-05-26 15:03:53 -04:00

45 lines
805 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qc-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.optional-dependencies]
mlflow = [
"mlflow>=3.0",
"sagemaker-mlflow>=0.4.0",
]
[project.scripts]
qc-cli = "src.main:app"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"boto3-stubs[iam,s3,sagemaker]",
"pytest>=8.0",
"pyright>=1.1.409",
"types-PyYAML",
"ruff>=0.4",
]
[tool.ruff]
line-length = 123
[tool.ruff.lint]
select = ["E", "F", "I"]