[build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [project] name = "mcias-client" version = "0.1.0" description = "Python client library for the MCIAS identity and access management API" requires-python = ">=3.11" license = { text = "MIT" } dependencies = [ "httpx>=0.27", ] [project.optional-dependencies] dev = [ "pytest>=8", "respx>=0.21", "mypy>=1.10", "ruff>=0.4", ] [tool.setuptools.packages.find] where = ["."] include = ["mcias_client*"] [tool.mypy] strict = true python_version = "3.11" [tool.ruff] target-version = "py311" line-length = 88 [tool.ruff.lint] select = ["E", "F", "W", "I", "UP"]