-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 995 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
[project]
name = "synthwave"
version = "0.1.0"
description = "Generating synthetic magnetic measurements of MHD modes with ThinCurr"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Rian Chandra", email = "rianc@mit.edu"},
{name = "Zander Keith", email = "zkeith@mit.edu"},
]
dependencies = [
"pre-commit>=4.3.0",
"openfusiontoolkit",
"freeqdsk>=0.5.2",
"xarray>=2025.1.0",
"scipy>=1.16.2",
"pyvista>=0.46.3",
"matplotlib>=3.10.7",
"h5py>=3.15.1",
"netcdf4>=1.7.3",
"sympy>=1.14.0",
]
[dependency-groups]
dev = [
"black>=25.9.0",
"isort>=7.0.0",
"mypy>=1.18.2",
"pylint>=4.0.1",
"pytest>=8.4.2",
"ruff>=0.14.1",
"shellcheck-py>=0.11.0.1",
"tomllint>=0.3.0",
"yamllint>=1.37.1",
]
[tool.uv.sources]
openfusiontoolkit = {path = "submodules/OpenFUSIONToolkit/python", editable = true}
[tool.isort]
profile = "black"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]