Skip to content

Commit 69d6f61

Browse files
authored
chore: Rename zarr-datafusion-internal to zarr-datafusion-search (#17)
* chore: Rename `zarr-datafusion-internal` to `zarr-datafusion-search` * update uv lockfiles
1 parent 5c91159 commit 69d6f61

16 files changed

Lines changed: 23 additions & 29 deletions

File tree

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: uv sync
4343
working-directory: python
44-
run: uv sync --no-install-package zarr-datafusion-internal
44+
run: uv sync --no-install-package zarr-datafusion-search
4545

4646
- name: "Maturin develop"
4747
run: |

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "zarr-datafusion-internal"
2+
name = "zarr-datafusion-search"
33
version = "0.1.0"
44
edition = "2024"
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# zarr-datafusion-internal
1+
# zarr-datafusion-search
22

33
This is a prototype for being able to query _metadata_ about Zarr arrays using [DataFusion](https://datafusion.apache.org/), an extensible query engine written in Rust.
44

@@ -27,7 +27,7 @@ In addition, DataFusion-Python supports [_custom table providers_](https://dataf
2727
> DataFusion used to compile the custom table provider.
2828
2929
```py
30-
from zarr_datafusion_internal import ZarrTable
30+
from zarr_datafusion_search import ZarrTable
3131
from datafusion import SessionContext
3232

3333
# Create a new DataFusion session context

pyproject.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
[project]
2-
name = "zarr-datafusion-internal"
2+
name = "zarr-datafusion-search"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.12"
7-
dependencies = [
8-
"numpy>=2.3.2",
9-
"shapely>=2.1.1",
10-
"zarr>=3.1.2",
11-
]
7+
dependencies = ["numpy>=2.3.2", "shapely>=2.1.1", "zarr>=3.1.2"]
128

139
[dependency-groups]
14-
dev = [
15-
"ipykernel>=6.30.1",
16-
]
10+
dev = ["ipykernel>=6.30.1"]

python/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
2-
name = "zarr-datafusion-internal-python"
2+
name = "zarr-datafusion-search-python"
33
version = "0.1.0"
44
edition = "2024"
55
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
6-
description = "Python bindings for zarr-datafusion-internal"
6+
description = "Python bindings for zarr-datafusion-search"
77
readme = "README.md"
88
# repository = "https://github.com/datafusion-contrib/datafusion-geo"
99
license = "MIT OR Apache-2.0"
@@ -20,4 +20,4 @@ crate-type = ["cdylib"]
2020
[dependencies]
2121
datafusion-ffi = "50"
2222
pyo3 = { version = "0.26", features = ["abi3-py39"] }
23-
zarr-datafusion-internal = { path = "../" }
23+
zarr-datafusion-search = { path = "../" }

python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Zarr datafusion internal
1+
Zarr datafusion search

python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["maturin>=1.4.0,<2.0"]
33
build-backend = "maturin"
44

55
[project]
6-
name = "zarr_datafusion_internal"
6+
name = "zarr_datafusion_search"
77
requires-python = ">=3.9"
88
dependencies = ["datafusion"]
99
classifiers = [
@@ -15,7 +15,7 @@ dynamic = ["version"]
1515

1616
[tool.maturin]
1717
features = ["pyo3/extension-module"]
18-
module-name = "zarr_datafusion_internal._rust"
18+
module-name = "zarr_datafusion_search._rust"
1919
python-source = "python"
2020

2121
[tool.uv]
File renamed without changes.

0 commit comments

Comments
 (0)