-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.31 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
[project]
name = "dLux"
version = "0.14.0"
description = "Differentiable Optical Models as Parameterised Neural Networks in Jax using Zodiax."
readme = "README.md"
requires-python =">=3.8"
license = {file = "LICENSE.md"}
authors = [
{name = "Louis Desdoigts", email = "[email protected]"},
]
keywords = ["python", "optics", "machine-learning", "jax", "autodiff", "differentiable", "diffraction", "simulation", "telescope", "dLux"]
urls = {repository = "https://github.com/LouisDesdoigts/dLux"}
dependencies = ["jax", "jaxlib", "zodiax>=0.4.1"]
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
extras = ["matplotlib", "jupyter", "jupyterlab", "tqdm", "chainconsumer", "numpyro", "dLuxToliman", "scikit-learn"]
dev = ["pytest", "black", "ruff", "pre-commit", "mkdocs", "mkdocs-jupyter", "mkdocs-same-dir", "mkdocs-autorefs", "mkdocs-simple-plugin", "mkdocstrings-python", "jupyter_contrib_nbextensions", "notebook==6.4.12"]
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
select = ["E", "F"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
ignore-init-module-imports = true
[tool.ruff.isort]
combine-as-imports = true
lines-after-imports = 2