-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1016 Bytes
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1016 Bytes
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
[project]
name = "glide"
version = "0.1.0"
description = "Process Slocum glider data"
readme = "README.md"
authors = [
{ name = "Jesse Cusack", email = "jesse.cusack@oregonstate.edu" }
]
requires-python = ">=3.11"
dependencies = [
"bottleneck>=1.4.2",
"dask>=2025.2.0",
"flox>=0.10.0",
"gsw>=3.6.19",
"netcdf4>=1.7.2",
"numpy>=2.2.2",
"pandas>=2.2.3",
"profinder==0.2.3",
"pyyaml>=6.0.2",
"scipy>=1.15.1",
"typer-slim>=0.15.2",
"xarray>=2025.1.2",
]
[project.scripts]
glide = "glide.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"compliance-checker>=5.4.2",
"ipykernel>=6.29.5",
"matplotlib>=3.10.0",
"mypy>=1.15.0",
"pandas-stubs>=2.2.3.241126",
"pytest>=8.3.4",
"ruff>=0.9.5",
"types-pyyaml>=6.0.12.20241230",
]
[tool.mypy]
disable_error_code = ["import-untyped"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:Mean of empty slice:RuntimeWarning",
]