-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "xarray-selafin-backend" | ||
version = "0.1.3-beta1" | ||
name = "xarray-selafin" | ||
version = "0.1.1" | ||
description = "" | ||
authors = ["tomsail <[email protected]>", "lucduron <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/seareport/xarray-selafin/" | ||
include = [ | ||
"xarray_selafin_backend/data/*", | ||
"xarray_selafin_backend/variable/*" | ||
"xarray_selafin/data/*", | ||
"xarray_selafin/variable/*" | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -23,7 +23,7 @@ netcdf4 = "*" | |
dask = "*" | ||
|
||
[tool.poetry.plugins."xarray.backends"] | ||
selafin = "xarray_selafin_backend.xarray_backend:SelafinBackendEntrypoint" | ||
selafin = "xarray_selafin.xarray_backend:SelafinBackendEntrypoint" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
matplotlib = "*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = xarray-selafin-backend | ||
version = 0.1.3-beta1 | ||
name = xarray-selafin | ||
version = 0.1.1 | ||
author = tomsail, lucduron | ||
author_email = [email protected], [email protected] | ||
description = https://github.com/seareport/xarray-selafin | ||
|
@@ -21,14 +21,14 @@ include_package_data = True | |
packages = find: | ||
|
||
[options.package_data] | ||
xarray_selafin_backend = data/*, variable/* | ||
xarray_selafin = data/*, variable/* | ||
|
||
[options.extras_require] | ||
dask = | ||
dask = | ||
dask | ||
dev = | ||
matplotlib | ||
|
||
[options.entry_points] | ||
xarray.backends = | ||
selafin = xarray_selafin_backend.xarray_backend:SelafinBackendEntrypoint | ||
selafin = xarray_selafin.xarray_backend:SelafinBackendEntrypoint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
setup( | ||
name="xarray-selafin-backend", | ||
version="0.1.3-beta1", | ||
name="xarray-selafin", | ||
version="0.1.1", | ||
author=["tomsail", "lucduron"], | ||
author_email="[email protected]", | ||
description="https://github.com/seareport/xarray-selafin", | ||
packages=find_packages(), | ||
package_data={ | ||
# If your data files are in a package called 'xarray_selafin_backend' under 'data' | ||
"xarray_selafin_backend": ["data/*", "variable/*"], | ||
"xarray_selafin": ["data/*", "variable/*"], | ||
}, | ||
install_requires=[ | ||
"numpy", | ||
|
@@ -21,11 +21,13 @@ | |
], | ||
extras_require={ | ||
"dask": ["dask"], | ||
"dev": ["matplotlib"], # Assuming netcdf4 is listed intentionally in both main and dev dependencies | ||
"dev": [ | ||
"matplotlib" | ||
], # Assuming netcdf4 is listed intentionally in both main and dev dependencies | ||
}, | ||
entry_points={ | ||
"xarray.backends": [ | ||
"selafin = xarray_selafin_backend.xarray_backend:SelafinBackendEntrypoint", | ||
"selafin = xarray_selafin.xarray_backend:SelafinBackendEntrypoint", | ||
], | ||
}, | ||
python_requires=">=3.9", | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters