-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.29 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
[project]
name = "flekspy"
version = "0.7.5"
description = "Python utilities for processing FLEKS data"
authors = [
{name = "Yuxi Chen", email = "yuxichen@umich.edu"},
{name = "Hongyang Zhou", email = "hyzhou@umich.edu"},
]
requires-python = ">=3.10, <3.15"
readme = "README.md"
dependencies = [
"numba>=0.60.0",
"numpy>=1.26.4",
"polars>=0.20.21,<1",
"requests>=2.32.3,<3",
"xarray>=2024.6.0",
"xugrid>=0.14.2,<1"
]
[project.optional-dependencies]
plot = [
"matplotlib>=3.8.2,<4",
"scipy>=1.14.1,<2",
]
hdf5 = [
"h5py>=3.11.0,<4",
]
ml = [
"scikit-learn>=1.3.2,<2",
]
yt = [
"yt>=4.3.0,<5",
]
docs = [
"myst-nb>=1.0.0,<2",
"sphinx-autoapi>=3.0.0,<4",
"pydata-sphinx-theme>=0.15,<1",
"sphinx-jupyterbook-latex>=1.0,<2",
"scikit-learn>=1.3.2,<2",
]
dev = [
"flekspy[plot,hdf5,ml,yt,docs]",
"pytest>=8.0.0,<9",
"pytest-benchmark>=4.0.0,<5",
"pytest-cov>=4.1.0,<5",
"jupyter>=1.0.0,<2",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::UserWarning",
]
[tool.hatch.build.targets.sdist]
include = ["src/flekspy"]
[tool.hatch.build.targets.wheel]
include = ["src/flekspy"]
[tool.hatch.build.targets.wheel.sources]
"src/flekspy" = "flekspy"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"