dx-dcp 0.1.0

Development Context Protocol - binary-first replacement for MCP
Documentation
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "dcp-client"
version = "0.1.0"
description = "Python SDK for the Development Context Protocol (DCP)"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
]
dependencies = []

[project.optional-dependencies]
sse = ["aiohttp>=3.8.0"]
dev = [
    "pytest>=7.0.0",
    "pytest-asyncio>=0.21.0",
    "aiohttp>=3.8.0",
]

[project.urls]
Homepage = "https://github.com/example/dcp"
Documentation = "https://github.com/example/dcp#readme"
Repository = "https://github.com/example/dcp"

[tool.setuptools.packages.find]
where = ["."]