diff --git a/poetry.lock b/poetry.lock index 39cabde..97eb089 100644 --- a/poetry.lock +++ b/poetry.lock @@ -132,6 +132,21 @@ datasette = ">=0.59" [package.extras] test = ["httpx", "pytest-asyncio", "pytest"] +[[package]] +name = "datasette-copyable" +version = "0.3.1" +description = "Datasette plugin for outputting tables in formats suitable for copy and paste" +category = "main" +optional = false +python-versions = "*" + +[package.dependencies] +datasette = ">=0.49" +tabulate = "*" + +[package.extras] +test = ["sqlite-utils", "httpx", "pytest-asyncio", "pytest"] + [[package]] name = "h11" version = "0.12.0" @@ -351,6 +366,17 @@ category = "main" optional = false python-versions = ">=3.5" +[[package]] +name = "tabulate" +version = "0.8.10" +description = "Pretty-print tabular data" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" + +[package.extras] +widechars = ["wcwidth"] + [[package]] name = "typing-extensions" version = "4.3.0" @@ -378,7 +404,7 @@ standard = ["websockets (>=9.1)", "httptools (>=0.2.0,<0.3.0)", "watchgod (>=0.6 [metadata] lock-version = "1.1" python-versions = "^3.8" -content-hash = "2f13cb6360cbe7d09e9a31213add54d287c83c32a8fa42c1bde4a8a94606f18d" +content-hash = "e787dd6136fe591e949877b795d1d15a0ffc36e51f644025f0bf3e08fca98231" [metadata.files] aiofiles = [] @@ -394,6 +420,7 @@ colorama = [ ] datasette = [] datasette-auth-passwords = [] +datasette-copyable = [] h11 = [] httpcore = [] httpx = [] @@ -420,5 +447,6 @@ sniffio = [ {file = "sniffio-1.2.0-py3-none-any.whl", hash = "sha256:471b71698eac1c2112a40ce2752bb2f4a4814c22a54a3eed3676bc0f5ca9f663"}, {file = "sniffio-1.2.0.tar.gz", hash = "sha256:c4666eecec1d3f50960c6bdf61ab7bc350648da6c126e3cf6898d8cd4ddcd3de"}, ] +tabulate = [] typing-extensions = [] uvicorn = [] diff --git a/pyproject.toml b/pyproject.toml index 7dca143..c2989e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,11 +7,8 @@ authors = ["arne "] [tool.poetry.dependencies] python = "^3.8" datasette = "^0.60.1" -# datasette-vega = "^0.6.2" -# datasette-copyable = "^0.3.1" -# datasette-leaflet = "^0.2.2" -# datasette-leaflet-geojson = "^0.8" datasette-auth-passwords = "^1.0" +datasette-copyable = "^0.3.1" [tool.poetry.dev-dependencies]