21 lines
416 B
TOML
21 lines
416 B
TOML
[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"]
|