-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.47 KB
/
pyproject.toml
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
[project]
name = "fdtdx"
version = "0.1.5"
description = "A JAX framework for the finite-difference time-domain (FDTD) method for solving Maxwell's equations with a focus on inverse design of photonic devices."
readme = "README.md"
authors = [
{ name = "Yannik Mahlau", email = "[email protected]" },
{ name = "Frederik Schubert", email = "[email protected]" },
]
requires-python = ">=3.11,<3.13"
dependencies = [
"loguru>=0.7.3",
"pytreeclass>=0.11",
"jax>=0.4.36; platform_system != 'Linux'",
"jax[cuda12]>=0.4.36; platform_system == 'Linux'",
"matfree>=0.1.1",
"moviepy>=2.1.1",
"optax>=0.2.4",
"equinox>=0.11.10",
"trimesh>=4.5.3",
"tidy3d>=2.7.8",
"seaborn>=0.13.2",
"matplotlib>=3.9.4",
"rich>=13.9.4",
"zstandard>=0.23.0",
]
[project.urls]
Repository = "https://github.com/ymahlau/fdtdx"
Documentation = "https://ymahlau.github.io/fdtdx/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py312"
line-length = 120
fix = true
exclude = ["examples", "slurm"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"aider-chat>=0.69.0",
"black>=24.10.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.48",
"mkdocstrings[python]>=0.27.0",
"pre-commit>=4.0.1",
"pymdown-extensions>=10.12",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.8.2",
"tox-uv>=1.16.1",
]