Add Conduit Python client library

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
chelsea
2026-07-05 17:41:15 +00:00
parent 1d9e7e0fab
commit a3e6ef70df
8 changed files with 719 additions and 0 deletions

20
pythonlib/pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "conduit-client"
version = "0.1.0"
description = "Python client for the Conduit / Mega API gateway"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
megaapi = ["py.typed"]
conduit = ["py.typed"]