[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", "mlflow>=3.0", "numpy>=1.26", "pydantic>=2.13.3", "pyyaml>=6.0.3", "qai-hub>=0.49.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", "pytest-mock>=3.12", "pyright>=1.1.409", "types-PyYAML", "ruff>=0.4", ] [tool.ruff] line-length = 123 [tool.ruff.lint] select = ["E", "F", "I"]