-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.41 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
[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.2.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.11.*"
dependencies = [
"numpy<2.0.0",
"scipy>=1.14.0",
"netCDF4>=1.6.5",
"pyvista>=0.43.3",
"matplotlib>=3.8",
"shapely>=2.0.4",
"sympy>=1.13.0",
"PyQT6>=6.7.1",
"imageio>=2.36.1",
"imageio-ffmpeg>=0.5.1",
"numba==0.59.1",
"pymoo>=0.6.1.3",
"Cython==3.2.3",
"bpy==4.5.4",
"pyyaml>=6.0.2",
"pytest>=8.3.5",
"pybind11>=2.13.6",
"pyqtgraph>=0.13.7",
"opencv-python<=4.9.0.80",
"pandas>=2.3.1",
"scikit-build-core>=0.11.6",
"ninja>=1.13.0"
]
[tool.pytest.ini_options]
pythonpath = [
"src",
"tests"
]
[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"