-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 908 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 908 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "psc-plot"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"numpy>=2.0",
"xarray>=2024.0",
"xrft>=1.0",
"pandas>=2.0",
"dask>=2024.0",
"distributed>=2024.0",
"h5py>=3.0",
"tables>=3.10",
"scipy>=1.10",
"matplotlib>=3.8",
"pyarrow>=22.0",
"lark>=1.0",
"pscpy @ git+https://github.com/psc-code/pscpy.git",
]
[project.optional-dependencies]
test = ["pytest>=8.0", "pytest-mpl>=0.17"]
dev = ["ruff>=0.6"]
dask-graph = ["graphviz>=0.20"]
[project.scripts]
psc-plot = "lib.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore:Animation was deleted without rendering anything:UserWarning",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 320
[tool.ruff.lint]
select = ["I"]