Skip to content

Commit e40fcd4

Browse files
committed
Rename to xarray-enmap
1 parent 972b4ee commit e40fcd4

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# xrenmap
1+
# xarray-enmap
22

33
An xarray backend to read EnMAP archives.

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: xrenmap
1+
name: xarray-enmap
22
channels:
33
- conda-forge
44
dependencies:

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ requires = [
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "xrenmap"
8+
name = "xarray-enmap"
99
dynamic = ["version"]
1010
authors = [
1111
{name = "Pontus Lurcock", email = "[email protected]"}
@@ -26,7 +26,7 @@ dependencies = [
2626
]
2727

2828
[tool.setuptools.dynamic]
29-
version = {attr = "xrenmap.__version__"}
29+
version = {attr = "xarray_enmap.__version__"}
3030

3131
[tool.setuptools.packages.find]
3232
exclude = [
@@ -51,10 +51,10 @@ doc = [
5151
]
5252

5353
[project.urls]
54-
Documentation = "https://github.com/xcube-dev/xrenmap/blob/main/README.md"
55-
Issues = "https://github.com/xcube-dev/xrenmap/issues"
56-
Changelog = "https://github.com/xcube-dev/xrenmap/blob/main/CHANGES.md"
57-
Repository = "https://github.com/xcube-dev/xrenmap"
54+
Documentation = "https://github.com/xcube-dev/xarray_enmap/blob/main/README.md"
55+
Issues = "https://github.com/xcube-dev/xarray_enmap/issues"
56+
Changelog = "https://github.com/xcube-dev/xarray_enmap/blob/main/CHANGES.md"
57+
Repository = "https://github.com/xcube-dev/xarray_enmap"
5858

5959
[project.entry-points."xarray.backends"]
60-
enmap = "xrenmap.xrenmap:EnmapEntrypoint"
60+
enmap = "xarray_enmap.xarray_enmap:EnmapEntrypoint"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def open_dataset(
4444
*,
4545
drop_variables: str | Iterable[str] | None = None,
4646
) -> xr.Dataset:
47-
self.temp_dir = tempfile.mkdtemp(prefix="xrenmap-")
47+
self.temp_dir = tempfile.mkdtemp(prefix="xarray-enmap-")
4848
path = pathlib.Path(filename_or_obj)
4949
if path.is_file():
5050
ds = read_dataset_from_archive(filename_or_obj, self.temp_dir)

0 commit comments

Comments
 (0)