-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (63 loc) · 2.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "geozarr-examples"
description = "Simple GeoZarr examples"
authors = [
{name = "Max Jones", email = "[email protected]"}
]
requires-python = ">=3.11"
dependencies = [
"zarr",
]
dynamic = [
"version",
]
classifiers = [
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
license = {text = "MIT License"}
keywords = ["Python", "compressed", "ndimensional-arrays", "zarr"]
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/geozarr_examples/_version.py"
[tool.pixi.pypi-dependencies]
geozarr_examples = { path = ".", editable = true }
xarray = { git = "https://github.com/pydata/xarray.git", rev = "4bbab48cacf94ff285475bd7b7abeea3b2ea888f" }
xproj = { git = "https://github.com/benbovy/xproj.git", branch = "main" }
rioxarray = { git = "https://github.com/corteva/rioxarray.git" }
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[tool.pixi.dependencies]
proj = ">=9.5.1"
cftime = ">=1.6.4,<2"
[tool.pixi.environments]
default = { solve-group = "default" }
test = { features = ["test", "io", "analysis"], solve-group = "default" }
[tool.pixi.feature.io.dependencies]
netcdf4 = "*"
pooch = ">=1.8.2,<2"
rasterio = ">=1.4.3,<2"
[tool.pixi.feature.analysis.dependencies]
jupyter = "*"
panel = "*"
matplotlib = "*"
cartopy = "*"
hvplot = "*"
[tool.pixi.feature.analysis.pypi-dependencies]
geoviews = "*"
[dependency-groups]
test = ["pytest"]