[project]
name = "mediaconvert-tests"
version = "0.1.0"
description = "Python tests for Suno CDK"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
    "boto3>=1.34.0",
    "botocore>=1.34.0",
    "python-dotenv>=1.0.0",
    "requests>=2.32.3",
]

[project.optional-dependencies]
dev = [
    "black>=24.0.0",
    "ruff>=0.1.0",
    "pytest>=7.0.0",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
only-include = ["test_mediaconvert.py"]

[tool.hatch.build]
sources = ["."]

[tool.ruff]
line-length = 100
target-version = "py39"

[tool.black]
line-length = 100
target-version = ['py39']

[tool.uv]
dev-dependencies = [
    "ipython>=8.0.0",
    "pip-licenses>=5.0.0",
]
