create AWS infra
This commit is contained in:
37
pyproject.toml
Normal file
37
pyproject.toml
Normal 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"]
|
||||
Reference in New Issue
Block a user