forked from chromatix-team/chromatix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 965 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 965 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "chromatix"
authors = [{name = "Chromatix Team"}]
description = "Differentiable wave optics library using JAX"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"jax>=0.4.1",
"einops>=0.6.0",
"chex>=0.1.5",
"optax>=0.1.4",
"scipy>=1.10.0",
"jaxopt>=0.8.5",
"equinox>=0.12.2",
"optimistix>=0.0.10",
]
version = "0.4.0"
[project.optional-dependencies]
dev = ["mypy>=0.991", "pytest>=7.2.0", "ruff==0.9.0", "pre-commit>=4.0.0", "matplotlib>=3.10.0"]
docs = ["mkdocs >= 1.4.2", "mkdocs-material >= 9.0.6", "mkdocstrings-python >= 0.8.3", "mkdocs-jupyter"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
ignore = ["E402"]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ruff>=0.9.0",
]