-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 875 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
[project]
name = "netex"
version = "0.1.0"
description = "Allows users to upload and analyze NetCDF3 and NetCDF4 files."
requires-python = ">= 3.10"
dependencies = [
"beautifulsoup4==4.14.2",
"black==25.12.0",
"coverage==7.9.1",
"flask==3.1.0",
"h5netcdf==1.8.1",
"h5py==3.13.0",
"humanize==4.12.3",
"minio==7.2.20",
"path==17.1.1",
"pytest==8.4.2",
"pytest-env==1.2.0",
"pytest-flask==1.3.0",
"pytest-mock==3.15.1",
"scipy==1.15.3",
"testcontainers==4.13.3",
"toml==0.10.2",
"xarray==2025.4.0",
]
[build-system]
requires = ["uv_build>=0.9.11,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"djlint==1.36.4",
]
[tool.djlint]
profile = "jinja"
extension = "html.jinja"
[tool.pytest.ini_options]
pythonpath = ["src", "tests"]
[tool.pytest_env]
NETEX_CONFIG = "tests/conf/netex.toml"