-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (92 loc) · 2.16 KB
/
Copy pathpyproject.toml
File metadata and controls
98 lines (92 loc) · 2.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools>=61.0", "wheel", "Cython>=3.0.0", "numpy>=2.0.0",
"pybind11>=2.13.6", "scikit-build-core>=0.11.6"]
build-backend = "scikit_build_core.build"
[project]
name = "pyvale"
version = "2026.7.0"
description = "Your virtual engineering lab: An all-in-one package for sensor simulation, uncertainty quantification, sensor placement optimisation and simulation calibration or validation."
authors = [
{ name = "scepticalrabbit et al.", email = "thescepticalrabbit@gmail.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = "==3.13.*"
dependencies = [
"numpy>=2.0.0",
"scipy>=1.14.0",
"matplotlib>=3.8",
"pyvista>=0.43.3",
"vtk>=9.5.2",
"netCDF4>=1.6.5",
"sympy>=1.13.0",
"PyQT6>=6.7.1",
"imageio>=2.36.1",
"imageio-ffmpeg>=0.5.1",
"pyyaml>=6.0.0",
"bpy==5.1.2",
"pyqtgraph>=0.13.7",
"opencv-python>=4.13.0.92",
"pandas>=2.3.1",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"Cython==3.2.3",
"pybind11>=2.13.6",
"scikit-build-core>=0.11.6",
"ninja>=1.13.0",
"sphinx",
"babel",
"docutils",
"imagesize",
"pygments",
"snowballstemmer",
"breathe",
"furo",
"alabaster",
"myst-parser",
"sphinx-codeautolink",
"sphinx-copybutton",
"sphinx-gallery",
"sphinx-design",
"sphinx-autodoc-typehints",
"ipywidgets",
"pillow",
"sphinxcontrib-applehelp",
"sphinxcontrib-devhelp",
"sphinxcontrib-htmlhelp",
"sphinxcontrib-jsmath",
"sphinxcontrib-qthelp",
"sphinxcontrib-serializinghtml",
"certifi",
"idna",
"jinja2",
"markupsafe",
"packaging",
"requests",
"roman_numerals",
"trame",
"trame-vtk",
"trame-vuetify",
"urllib3"
]
[tool.pytest.ini_options]
pythonpath = [
"src",
"tests"
]
filterwarnings = [
"ignore:This process .* is multi-threaded, use of fork:DeprecationWarning"
]
[project.urls]
"Repository" = "https://github.com/Computer-Aided-Validation-Laboratory/pyvale"
"Issue Tracker" = "https://github.com/Computer-Aided-Validation-Laboratory/pyvale/issues"
[tool.scikit-build]
build.verbose = false
logging.level = "INFO"
ninja.make-fallback = false
build-dir = "build"
[tool.uv]
required-version = ">=0.9.17"
exclude-newer = "P30D"