[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "conduit-client" version = "0.1.0" description = "Typed Python client for the Conduit unified API gateway" readme = "README.md" license = { text = "MIT" } requires-python = ">=3.10" authors = [{ name = "Chelsea" }] keywords = ["conduit", "api", "client", "gateway"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Typing :: Typed", ] dependencies = [ "httpx>=0.27.0", "pydantic>=2.0.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", "respx>=0.21.0", "mypy>=1.8.0", "ruff>=0.3.0", ] [project.urls] Homepage = "https://conduit.librewiki.org/doku.php?id=examples" Repository = "https://git.scorpi.us/chelsea/cheechandcharliesnortan8balloffadeadhookersassinthedesert" [tool.hatch.build.targets.wheel] packages = ["src/conduit_client"] [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" [tool.mypy] python_version = "3.10" strict = true warn_return_any = true warn_unused_ignores = true disable_error_code = ["no-any-return"] [tool.ruff] line-length = 100 src = ["src", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"] ignore = ["E501"]