-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (36 loc) · 890 Bytes
/
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
[tool.poetry]
name = "reason-net"
version = "0.1.0"
description = ""
authors = ["samsja <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = ">=2.1.0"
wandb = ">=0.15.3"
lightning = ">=2.1.0"
jaxtyping = ">=0.2.25"
hydra-core = "^1.3.2"
pydantic = "^2.5.3"
einops = "^0.7.0"
beartype = "^0.16.4"
cyclopts = "^2.1.2"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
ruff = "^0.1.9"
pre-commit = "^3.3.2"
jupyterlab = "^4.0.0"
jupyterlab-code-formatter = "^2.2.1"
mypy = "^1.5.1"
ipywidgets = "^8.1.1"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
ignore = [
"E501", # line too long, handled by black
"F722", # allow jaxtyping see here https://docs.kidger.site/jaxtyping/faq/#flake8-or-ruff-are-throwing-an-error
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"