-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.76 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
[project]
name = "fullwave25"
version = "1.2.3" # Update via bump-my-version, not manually
description = "Fullwave 2.5: Ultrasound wave propagation simulation with heterogeneous power law attenuation modelling capabilities"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0.0",
"scipy>=1.13.1",
"matplotlib>=3.10.7",
"tqdm>=4.67.1",
"opencv-python-headless>=4.12.0.88",
"tomli>=2.3.0",
"numba>=0.63.1",
"joblib>=1.5.3",
"numexpr>=2.14.1",
]
authors = [{ name = "Masashi Sode" }, { name = "Gianmarco Pinton" }]
maintainers = [{ name = "Masashi Sode" }]
keywords = ["simulation", "fdtd", "finite-difference", "ultrasound"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Developers",
]
[project.optional-dependencies] # --extra
test = ["pytest", "tomli>=2.3.0"]
dev = [
"pre-commit==4.1.0",
"pytest>=8.3.5",
"ruff>=0.12.9",
"line-profiler>=5.0.1",
]
examples = [
"jupyter>=1.0.0",
"ipykernel>=6.28.0",
"mach-beamform>=0.0.4",
"cupy-cuda12x>=13.6.0",
"pymust>=0.1.8",
]
[tool.hatch.version]
path = "fullwave/__init__.py"
[dependency-groups]
dev = ["deptry>=0.23.1", "pre-commit>=4.1.0", "pytest>=8.3.5", "ruff>=0.12.9"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["fullwave", "fullwave.utils"]
[tool.hatch.build]
exclude = ["tests", "figs", "examples", ".vscode", ".github", "fullwave/solver/bins/gpu", "fullwave/solver/bins/exponential_attenuation", "fullwave/solver/bins/_exponential_attenuation"]