-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 887 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
46
[project]
name = "n3"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beartype>=0.18.5",
"equinox>=0.11.7",
"ipykernel>=6.29.5",
"jax[cuda12]>=0.4.33",
"jaxtyping>=0.2.34",
"mnist1d>=0.0.2.post1",
"optax>=0.2.3",
"scikit-learn>=1.5.2",
"scipy>=1.14.1",
"wandb>=0.19.6",
]
[project.optional-dependencies]
plotting = [
"matplotlib>=3.9.2",
"seaborn>=0.13.2",
]
notebook = [
"ipython>=8.27.0",
"jupyter>=1.1.1",
"jupyterlab>=4.2.5",
]
richtext = [
"ipywidgets>=8.1.5",
"tqdm>=4.66.5",
]
benchmarking = [
"dysts>=0.95",
"numba>=0.61.0",
"sdeint>=0.3.0",
]
[tool.ruff.lint]
# syntax error in forward annotation broken by jaxtyping
ignore = ["F722", "F821"]
[tool.pyright]
python.venvPath = ".venv"
reportMissingImports = "warning"