-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (56 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
75 lines (56 loc) · 1.38 KB
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
[project]
name = "harp"
description = "Harmonized Ancillary Resource Provider"
authors = [{name = "Joackim Orcière", email = "joackim.orciere@hygeos.com"}]
requires-python = ">= 3.10"
version = "1.1.2"
dependencies = [
"numpy",
"netcdf4",
"h5netcdf",
"xarray",
"h5py",
"core @ git+https://github.com/hygeos/core",
"pandas",
# "pydap",
"pydap==3.5.0",
"cdsapi>=0.7.5",
# "scipy",
# "lxml",
]
[project.scripts]
harp = "harp.cli:entry"
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[tool.pixi.dependencies]
pytest = "*"
pytest-html = "*"
pytest-xdist = "*"
numpy = "*"
scipy = "*"
xarray = "*"
h5py = "*"
pandas = "*"
h5netcdf = "*"
netcdf4 = "*"
# pydap = "*"
pydap = "==3.5.0"
[tool.setuptools]
packages = {find = {where = ["."], include = ["harp*"]}}
[tool.setuptools.package-data]
"*" = ["*.json", "*.csv"]
# packages = {find = {}}
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.tasks]
autoparse_merra2 = "python harp/providers/NASA/MERRA2/_layout/merra2_autoparser.py"
[tool.pixi.pypi-dependencies]
harp = { path = ".", editable = true }
[tool.pixi.environments]
default = { features = ['sys', 'sub', 'dev'], solve-group = "default" }
[tool.pixi.feature.sys.dependencies]
[tool.pixi.feature.dev.dependencies]
ipykernel = "<=6.29.5"
[tool.pixi.feature.sub.dependencies]