2026-02-23 16:50:33 -08:00
|
|
|
[project]
|
|
|
|
|
name = "dclient"
|
|
|
|
|
version = "0.4"
|
|
|
|
|
description = "A client CLI utility for Datasette instances"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
authors = [{name = "Simon Willison"}]
|
|
|
|
|
license = "Apache-2.0"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"click",
|
2026-02-24 15:21:52 -08:00
|
|
|
"click-default-group",
|
2026-02-23 16:50:33 -08:00
|
|
|
"httpx",
|
|
|
|
|
"sqlite-utils",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/simonw/dclient"
|
|
|
|
|
Issues = "https://github.com/simonw/dclient/issues"
|
|
|
|
|
CI = "https://github.com/simonw/dclient/actions"
|
|
|
|
|
Changelog = "https://github.com/simonw/dclient/releases"
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
dclient = "dclient.cli:cli"
|
|
|
|
|
|
|
|
|
|
[project.entry-points.datasette]
|
|
|
|
|
client = "dclient.plugin"
|
|
|
|
|
|
|
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest",
|
|
|
|
|
"pytest-asyncio",
|
|
|
|
|
"pytest-httpx",
|
|
|
|
|
"cogapp",
|
|
|
|
|
"pytest-mock",
|
|
|
|
|
"datasette>=1.0a2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.uv.build-backend]
|
|
|
|
|
module-root = ""
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["uv_build>=0.9.18,<0.10.0"]
|
|
|
|
|
build-backend = "uv_build"
|